@php $company = company(); @endphp
Name: {{ $donation->donor_name }}
Email: {{ $donation->donor_email }}
Mobile: {{ $donation->mobile }}
Invoice No: {{ $donation->invoice_no }}
Invoice Date: {{ $donation->created_at->format('d M, Y') }}
| # | Description | Amount |
|---|---|---|
| 1 | Donation for {{ $company['name'] }} | {{ number_format($donation->donation_amount, 2) }} |
| @if ($donation->payment_status == 'unpaid') UNPAID @else PAID @endif |
|