Invoice ID: {{ $invoice->id }}
Date: {{ $invoice->invoice_date->format('Y-m-d') }}
Client: {{ $invoice->client->name }}
Company: {{ $invoice->company->name }}
{{--| # | Description | Quantity | Unit Price | Total |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->pnr }} | 1 | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->quantity * $item->unit_price, 2) }} |
| Subtotal | {{ number_format($invoice->subtotal, 2) }} | |||
| Tax ({{ $invoice->tax_percentage }}%) | {{ number_format($invoice->tax_amount, 2) }} | |||
| Grand Total | {{ number_format($invoice->grand_total, 2) }} | |||
Thank you for your business!