@if($event)
{{ $event->couple_name }}
{{ $event->venue }} · {{ $event->wedding_date->format('F j, Y') }} · Target: TZS {{ number_format($event->target_budget) }}
@endif
{{-- Summary Totals --}}
| Total Confirmed |
TZS {{ number_format($contributions->where('status','confirmed')->sum('amount')) }} |
| Total Pending |
TZS {{ number_format($contributions->where('status','pending')->sum('amount')) }} |
| GRAND TOTAL |
TZS {{ number_format($contributions->sum('amount')) }} |
All Contributions ({{ $contributions->count() }} entries)
| # |
Contributor |
Phone |
Method |
Reference |
Amount (TZS) |
Date |
Status |
@foreach($contributions as $i => $c)
| {{ $i + 1 }} |
{{ $c->contributor_name ?? '—' }} |
{{ $c->contributor_phone }} |
{{ ucwords(str_replace('_',' ',$c->payment_method ?? '—')) }} |
{{ $c->payment_reference ?? '—' }} |
{{ $c->amount > 0 ? number_format($c->amount) : '—' }} |
{{ $c->created_at->format('M d, Y') }} |
{{ ucfirst($c->status) }} |
@endforeach
@if($gifts->count())
Gift Registry ({{ $gifts->count() }} items)
| # | Item | Donor | Category | Est. Value (TZS) | Status |
@foreach($gifts as $i => $g)
| {{ $i+1 }} |
{{ $g->item_name }} |
{{ $g->donor_name }} |
{{ ucwords(str_replace('_',' ',$g->category)) }} |
{{ $g->estimated_value > 0 ? number_format($g->estimated_value) : '—' }} |
{{ ucfirst($g->status) }} |
@endforeach
@endif