@extends('layouts.admin') @section('title', 'Donations') @section('page-title', 'Donations') @section('page-subtitle', 'Track and manage donations') @section('content')
| Receipt # | Donor | Type | Campaign | Amount | Date | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $donation->receipt_number }} |
{{ $donation->is_anonymous ? 'Anonymous' : ($donation->donor_name ?? $donation->member?->full_name ?? 'Unknown') }} |
{{ $donation->donationType?->name }} | {{ $donation->campaign?->name ?? 'General' }} | GH₵{{ number_format($donation->amount, 2) }} | {{ $donation->donation_date->format('M d, Y') }} | {{ ucfirst($donation->status) }} | |
|
No donations found |
|||||||