Create Invoice from Estimate

Converting estimate #{{ $estimate->estimate_number }} to invoice

Back to Estimate

Source Estimate

{{ $estimate->subject }} - {{ $estimate->estimate_number }}

Invoice Details

Subject
Branch Select branch @foreach($branches as $branch) {{ $branch->name }} @endforeach
Invoice Date
Due Date
Description

Line Items

Add Item
@foreach($lineItems as $index => $item)

Item {{ $index + 1 }}

@if(count($lineItems) > 1) Remove @endif
Type Service Part Other
@if($item['type'] === 'service')
Service Item Select service @foreach($serviceItems as $serviceItem) {{ $serviceItem->name }} - ${{ number_format($serviceItem->price, 2) }} @endforeach
@elseif($item['type'] === 'part')
Part
@else
@endif
Description
Quantity
Unit Price
Total
@endforeach

Invoice Summary

Tax Rate (%)
Subtotal: ${{ number_format($this->subtotal, 2) }}
Tax ({{ $tax_rate }}%): ${{ number_format($this->taxAmount, 2) }}
Total: ${{ number_format($this->total, 2) }}
Cancel Create Invoice