Company Logo

{{ $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') }}
@php $i = 1; @endphp @foreach ($items as $item) @php $i++; @endphp @endforeach
# 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) }}
@if ($invoice->customer_notes)
Customer Notes:
{!! nl2br(e($invoice->customer_notes??"")) !!}
@endif

Thanks for your business.


Company Name: {{ $InvoiceSettings['issued_by']??'' }}
Bank: {{ $InvoiceSettings['bank_name']??'' }} | BSB: {{ $InvoiceSettings['bsb']??'' }} | ACCOUNT NO: {{ $InvoiceSettings['account_no']??'' }}
ACN: {{ $InvoiceSettings['acn']??'' }} | ABN: {{ $InvoiceSettings['abn']??'' }}
{{ $InvoiceSettings['address']??'' }}
Web: {{ $InvoiceSettings['web']??'' }}
Email: {{ $InvoiceSettings['email']??'' }}