@if(isset($donor['name']) && $donor['name'])
Donor Name
{{ $donor['name'] }}
@endif
@if(isset($donor['email']) && $donor['email'])
Email
{{ $donor['email'] }}
@endif
Financial Year
{{ $financialYear }}-{{ $financialYear + 1 }}
Statement Date
{{ now()->format('d M Y') }}
Tax Deductible Receipt
Thank you for your generous support throughout the financial year. This statement summarizes all your tax-deductible donations made to hasanat.org. Your contributions have made a meaningful difference in the lives of those we serve.
@if(isset($donations) && count($donations) > 0)
| Project |
Payment Method |
Donation Date |
Amount |
@php
$totalAmount = 0;
$currencySymbol = $donations[0]['currency_symbol'] ?? 'A$';
@endphp
@foreach($donations as $donation)
@php
$amount = (float) $donation['amount'];
$totalAmount += $amount;
@endphp
| {{ $donation['project_name'] ?? 'General Donation' }} |
{{ ucfirst(str_replace('_', ' ', $donation['payment_method'] ?? 'N/A')) }} |
{{ $donation['date'] ?? 'N/A' }} |
{{ $currencySymbol }}{{ number_format($amount, 2) }} |
@endforeach
Total Donations
{{ $currencySymbol }}{{ number_format($totalAmount, 2) }}
Important Tax Information: Donations over A$2 are tax-deductible. Please retain this statement for your tax records. If you have any questions regarding this statement, please contact us.
@else
📋
No donations found for this financial year.
@endif