Issued: {{ $invoice->created_at->format('F d, Y') }} • Due: {{ $invoice->due_date->format('F d, Y') }}
Bill To
{{ $invoice->customer->name }}
@if($invoice->customer->company){{ $invoice->customer->company }}
@endif @if($invoice->customer->email){{ $invoice->customer->email }}
@endif @if($invoice->customer->phone){{ $invoice->customer->phone }}
@endif| Description | Qty | Unit Price | Amount |
|---|---|---|---|
| {{ $item->description ?? 'Item' }} | {{ $item->quantity }} | KES {{ number_format($item->unit_price, 2) }} | KES {{ number_format($item->subtotal, 2) }} |
| Date | Method | Reference | Amount |
|---|---|---|---|
| {{ $payment->payment_date->format('M d, Y') }} | {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }} | {{ $payment->transaction_reference ?? '-' }} | KES {{ number_format($payment->amount, 2) }} |