Invoices summary
@php $s = $stats ?? []; @endphp| Total invoiced | MWK {{ number_format($s['total_invoiced'] ?? 0, 2, '.', ',') }} |
|---|---|
| Paid | MWK {{ number_format($s['paid_total'] ?? 0, 2, '.', ',') }} |
| Outstanding | MWK {{ number_format($s['outstanding_total'] ?? 0, 2, '.', ',') }} |
| Overdue | MWK {{ number_format($s['overdue_total'] ?? 0, 2, '.', ',') }} |
No invoices match the current filters.
@else| Invoice # | Client | Project | Invoice date | Due date | Amount | Fiscal code | Status |
|---|---|---|---|---|---|---|---|
| {{ $i->invoice_number }} | {{ $i->client?->company_name }} | {{ $i->project?->name }} | {{ optional($i->invoice_date)?->format('Y-m-d') }} | {{ optional($i->due_date)?->format('Y-m-d') }} | {{ number_format((float) $i->total_amount, 2, '.', ',') }} | {{ $i->mra_fiscal_code ?? '—' }} | {{ $i->status }} |