Create Will Call Invoice

Order Details
Pricing Configuration
Tip: Select a configuration to automatically calculate prices based on your desired margin and jobber percentage.
Billing Information
Shipping Information
Invoice Items
@foreach($invoiceItems as $index => $item)
@if(count($invoiceItems) > 1)
@endif
@endforeach
Additional Charges
@foreach($charges as $index => $charge)
@if($index > 0 || count($charges) > 1)
@endif
@endforeach

Order Summary

Items Subtotal: ${{ number_format($subtotal, 2) }}
@php $chargesTotal = 0; foreach ($charges as $charge) { if (!empty($charge['amount'])) { $chargesTotal += floatval($charge['amount']); } } @endphp @if($chargesTotal > 0)
Additional Charges: ${{ number_format($chargesTotal, 2) }}
@endif
Tax: $
Total: ${{ number_format($total, 2) }}
Cancel