|
BILL TO
{{ $invoice->party->name ?? 'Client Name' }}
{{ $invoice->party->address ?? 'Client Address' }}
{{ $invoice->party->email ?? 'client@example.com' }} {{ $invoice->party->phone ?? '(123) 456-7890' }} |
INVOICE DETAILS
|
| # | Description | Qty | Unit Price | Tax % | Amount |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $line->description }} | {{ number_format($line->quantity, 2) }} | {{ number_format($line->unit_price, 2) }} | {{ number_format($line->tax_pct, 2) }} | {{ number_format($line->line_total, 2) }} |
| Subtotal: | {{ number_format($subTotal, 2) }} |
| Tax: | {{ number_format($taxTotal, 2) }} |
| Total Due: | {{ number_format($grandTotal, 2) }} |
{{ $invoice->notes }}