|
BILLED TO: {{ $invoice->client->name }} @if($invoice->client->company_name) {{ $invoice->client->company_name }} @endif {{ $invoice->client->address }} {{ $invoice->client->city }}, {{ $invoice->client->country }} |
INVOICE DETAILS: Invoice Number: {{ $invoice->invoice_number }} Invoice Date: {{ $invoice->invoice_date->format('d M Y') }} Due Date: {{ $invoice->due_date->format('d M Y') }} Status: {{ $invoice->status }} |
| Item Description | Amount |
|---|---|
| {{ $item->description }} | {{ number_format($item->amount, 2) }} {{ $invoice->currency }} |
| Subtotal | {{ number_format($invoice->subtotal, 2) }} {{ $invoice->currency }} |
| Tax / VAT | {{ number_format($invoice->tax, 2) }} {{ $invoice->currency }} |
| Total Due | {{ number_format($invoice->total, 2) }} {{ $invoice->currency }} |