@extends('admin.layouts.app') @section('title','Donations') @section('breadcrumb') / Donations @endsection @section('content')
All donation records and transactions
| Donation ID | Donor | Amount | Purpose | Gateway | Payment ID | Status | Date | Receipt | Actions |
|---|---|---|---|---|---|---|---|---|---|
{{ $donation->donation_id }}
|
{{ $donation->donor_name }}
{{ $donation->donor_mobile }}
@if($donation->donor_email)
{{ $donation->donor_email }}
@endif
|
₹{{ number_format($donation->amount,2) }} | {{ Str::limit($donation->purpose,25) ?? 'General' }} | {{ ucfirst($donation->payment_gateway) }} | {{ Str::limit($donation->payment_id,18) ?? '—' }} | {!! $donation->payment_status_badge !!} | {{ $donation->donation_date->format('d M Y') }} | @if($donation->receipt_generated) Generated @else Pending @endif | |
|
No donations found |
|||||||||