My Donations

Make a Donation
@forelse($outgoingDonations ?? [] as $donation) @empty @endforelse
Date Amount Recipient Status Type Actions
{{ $donation['date'] ?? now()->format('M d, Y') }} {{ \App\Services\CurrencyService::formatAmount($donation['amount'] ?? 0, $donation['currency'] ?? null) }} @if(isset($donation['recipient_image']))
{{ $donation['recipient_name'] }}
{{ $donation['recipient_name'] }}
@else {{ $donation['recipient_name'] ?? 'General Fund' }} @endif
{{ ucfirst($donation['status'] ?? 'completed') }} {{ isset($donation['is_recurring']) && $donation['is_recurring'] ? 'Recurring' : 'One-time' }} Receipt

No donations found

Make Your First Donation
@if(count($outgoingDonations ?? []) > 0)
@endif

Recurring Donations

@php $recurringDonations = collect($outgoingDonations ?? [])->filter(function($donation) { return isset($donation['is_recurring']) && $donation['is_recurring']; }); @endphp @if($recurringDonations->count() > 0)
@foreach($recurringDonations as $donation)
@if(isset($donation['recipient_image']))
{{ $donation['recipient_name'] }}
@else
@endif

{{ $donation['recipient_name'] }}

{{ $donation['frequency'] ?? 'Monthly' }}

Amount:

{{ \App\Services\CurrencyService::formatAmount($donation['amount'] ?? 0, $donation['currency'] ?? null) }}

Next payment:

{{ $donation['next_payment_date'] ?? 'N/A' }}

@endforeach
@else

You don't have any recurring donations yet.

Set up a recurring donation to provide ongoing support.

@endif
@push('scripts') @endpush