Wedding Innovation System

Contributions Report — {{ now()->format('F j, Y') }}

@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)

@foreach($contributions as $i => $c) @endforeach
# Contributor Phone Method Reference Amount (TZS) Date Status
{{ $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) }}
@if($gifts->count())

Gift Registry ({{ $gifts->count() }} items)

@foreach($gifts as $i => $g) @endforeach
#ItemDonorCategoryEst. Value (TZS)Status
{{ $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) }}
@endif