| INVOICE # | SHAREHOLDER | TYPE | AMOUNT | BALANCE | DUE DATE | STATUS |
|---|---|---|---|---|---|---|
|
{{ $invoice->invoice_number }}
{{ date('d M Y', strtotime($invoice->invoice_date)) }}
|
{{ $invoice->shareholder->user->first_name }} {{ $invoice->shareholder->user->last_name }}
{{ $invoice->shareholder->member_number }}
|
{{ $invoice->invoice_type }} | MWK {{ number_format($invoice->amount, 2) }} | MWK {{ number_format($invoice->balance, 2) }} | {{ date('d M Y', strtotime($invoice->due_date)) }} | {{ $invoice->status }} |
| TOTALS | {{ $totals['count'] }} Invoices | MWK {{ number_format($totals['total_amount'], 2) }} | MWK {{ number_format($totals['total_balance'], 2) }} | Paid: {{ $totals['paid'] }} |