INVOICE

Invoice #: {{ $invoice->invoice_number }}

Date: {{ $invoice->invoice_date->format('M d, Y') }}

Due: {{ $invoice->due_date->format('M d, Y') }}

Rentor

123 Business Road
City, Country

Email: info@example.com

Bill To:

{{ $invoice->tenant->full_name }}

{{ $invoice->tenant->email }}

{{ $invoice->tenant->phone_number }}

Property:

{{ $invoice->property->name }}

@foreach ($invoice->items as $index => $item) @endforeach
# 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) }}
@if($invoice->notes)

Notes:

{{ $invoice->notes }}

@endif