|
{{ $InvoiceSettings['issued_by']??'' }} {{ $InvoiceSettings['address']??'' }} ABN {{ $InvoiceSettings['abn']??'' }} {{ $InvoiceSettings['email']??'' }} |
Invoice Details# {{ $invoice->invoice_number }}
Balance Due
${{ number_format($invoice->grand_total, 2) }} |
|
{{ $invoice->participant_name??"" }} {!! nl2br(e($invoice->participant_address??"")) !!} |
Invoice Date : {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('d M Y') }} Due Date : {{ \Carbon\Carbon::parse($invoice->due_date)->format('d M Y') }} |
| # | Date | Shift | Item | Description | Qty | Rate | Tax % | Amount AUD |
|---|---|---|---|---|---|---|---|---|
| {{ $i }} | {{ isset($item['date']) ? \Carbon\Carbon::parse($item['date'])->format('d M Y') : '' }} | {{ $item['shift']??"" }} | {{ $item['item_id']??"" }} | {!! $item['description']??"" !!} | {{ $item['quantity']??"" }} | {{ number_format($item['rate']??0, 2) }} | {{ isset($item['tax_rate']) && isset($masterInvoiceTaxRate[$item['tax_rate']??0]) ? $masterInvoiceTaxRate[$item['tax_rate']] : '' }}% | {{ number_format($item['amount']??0, 2) }} |
| Subtotal: | {{ number_format($invoice->sub_total??0, 2) }} |
| GST: | {{ number_format($invoice->total_gst??0, 2) }} |
| Grand Total: | {{ number_format($invoice->grand_total??0, 2) }} |
Thanks for your business.