Invoice #: {{ $invoice->invoice_number }}
Date: {{ $invoice->invoice_date->format('M d, Y') }}
Due: {{ $invoice->due_date->format('M d, Y') }}
123 Business Road
City, Country
Email: info@example.com
{{ $invoice->tenant->full_name }}
{{ $invoice->tenant->email }}
{{ $invoice->tenant->phone_number }}
{{ $invoice->property->name }}
| # | Description | Amount |
|---|---|---|
| {{ $index + 1 }} | {{ $item->description }} | UGX {{ number_format($item->amount, 2) }} |
| Subtotal: | UGX {{ number_format($invoice->subtotal, 2) }} |
| Tax: | UGX {{ number_format($invoice->tax_amount, 2) }} |
| Total: | UGX {{ number_format($invoice->total_amount, 2) }} |
{{ $invoice->notes }}