{{ $fmt($stats['thisMonth'] ?? 0) }}
Total Collected (Month)
{{ $fmt($stats['pending'] ?? 0) }}
Pending
{{ $stats['overdue'] ?? 0 }}
Overdue Invoices
| Member | Invoice | Method | Amount | Status | Date | Collected By |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($p->member?->name ?? '?', 0, 1)) }}
{{ $p->member?->name }} {{ $p->member?->member_id }} |
@if($p->invoice) {{ $p->invoice->invoice_number }} @else — @endif | {{ $methodLabel[$p->method] ?? $p->method }} | {{ $fmt($p->amount) }} | {{ $p->status }} | {{ $p->paid_at ? \Carbon\Carbon::parse($p->paid_at)->format('M j, Y') : '—' }} | {{ $p->collectedBy?->name ?? 'System' }} |
|
No payments found. |
||||||