{{-- client header --}}
Customer Information
Name : {{$invoice->customer->name ?? ""}},
Phone : {{$invoice->customer->phone_number ?? ""}},
Address : {{$invoice->customer->address ?? ""}}
Invoice Information
InvoiceID : {{$invoice->invoice_number}}
Status : {{$invoice->status}}
Date : {{substr($invoice->created_at,0,10)}}
Payment Status : {{$invoice->payment_status ?? "Partially Paid"}}
Properties
| S/N | Title | Unit | Size | Quantity | Price |
|---|---|---|---|---|---|
| {{$count}} | {{$item->property->title ?? ""}} | {{$item->property->unit ?? ""}} | {{$item->property->size ?? ""}} | {{$item->quantity ?? 1}} | {{formatPrice($item->price)}} |
| Total Quantity | {{ number_format($invoice->quantity) }} | Sub Total | ₦ {{ number_format($invoice->amount) }} | ||
| Discount | ₦ {{ number_format($invoice->discount) }} | Total | ₦ {{ number_format($invoice->total) }} | ||
| First Payment | ₦ {{ number_format($invoice->deposit_amount) }} | Installment / Tenure | ₦ {{ number_format($invoice->installment_amount) }} / {{ number_format($invoice->tenure) }} month(s) | ||
| Balance | ₦ {{ number_format($invoice->balance) }} | ||||
{{-- actions --}}