Vendor: {{ $bill->party->legal_name }}
Vendor TRN: {{ $bill->party->trn ?: 'N/A' }}
Due Date: {{ optional($bill->due_date)->format('d M Y') }}
| # | Description | Qty | Rate | Taxable | Input VAT | Total |
|---|---|---|---|---|---|---|
| {{ $item->line_number }} | {{ $item->description }} | {{ number_format((float)$item->quantity,2) }} | {{ number_format((float)$item->unit_rate,2) }} | {{ number_format((float)$item->taxable_amount,2) }} | {{ number_format((float)$item->recoverable_vat_amount,2) }} | {{ number_format((float)$item->line_total,2) }} |
| Taxable | {{ number_format((float)$bill->taxable_total,2) }} |
| Recoverable VAT | {{ number_format((float)$bill->recoverable_vat_total,2) }} |
| Non-Recoverable VAT | {{ number_format((float)$bill->nonrecoverable_vat_total,2) }} |
| Total | {{ $bill->currency_code }} {{ number_format((float)$bill->grand_total,2) }} |
Notes: {{ $bill->notes }}