Overview @php $fmt = fn ($m) => 'GHS '.number_format($m / 100, 2); @endphp

Overview

Total raised today, active giving pages, and recent donations.

Raised today

{{ $fmt($todayMinor) }}

Donations today

{{ number_format($todayCount) }}

Giving pages

{{ $givingPageCount }}

Wallet balance

{{ $fmt($balanceMinor) }}

Recent donations

View all
@if($recentDonations->isEmpty())

No donations yet. Create a giving page and share your QR.

@else
@foreach($recentDonations as $donation)

{{ $donation->payer_name ?: 'Anonymous donor' }}

{{ $donation->collection_type ?: 'Donation' }} · {{ $donation->qrCode?->label }} · {{ $donation->paid_at?->diffForHumans() }}

{{ $fmt($donation->merchant_amount_minor) }}
@endforeach
@endif