@extends('backend.layouts.app') @section('content')
| # | Donor Name | Mobile | Invoice No | Amount | Payment Type | Transaction No | Payment Status | Received Date | Received By | Remark | Donation Date |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $donations->firstItem() + $key }} | {{ $donation->donor_name }} | {{ $donation->mobile }} | {{ $donation->invoice_no }} | {{ number_format($donation->donation_amount, 2) }} | {{ ucfirst(str_replace('_', ' ', $donation->payment_type)) }} | {{ $donation->transaction_no ?? '-' }} | @if ($donation->payment_status == 'paid') Paid @else Unpaid @endif | {{ $donation->received_date ?? '-' }} | {{ $donation->received_by ?? '-' }} | {{ $donation->remark ?? '-' }} | {{ $donation->created_at->format('Y-m-d') }} |
| No donations found. | |||||||||||