@if(file_exists(public_path('storage/logo.png'))) hasanat.org Logo @elseif(file_exists(public_path('storage/logo.jpg'))) hasanat.org Logo @elseif(file_exists(public_path('storage/logo.svg'))) hasanat.org Logo @else
hasanat.org
@endif
Tax Summary For Financial Year {{ $financialYear }}-{{ $financialYear + 1 }}
Annual Donation Statement
@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)
Donation Details
@php $totalAmount = 0; $currencySymbol = $donations[0]['currency_symbol'] ?? 'A$'; @endphp @foreach($donations as $donation) @php $amount = (float) $donation['amount']; $totalAmount += $amount; @endphp @endforeach
Project Payment Method Donation Date Amount
{{ $donation['project_name'] ?? 'General Donation' }} {{ ucfirst(str_replace('_', ' ', $donation['payment_method'] ?? 'N/A')) }} {{ $donation['date'] ?? 'N/A' }} {{ $currencySymbol }}{{ number_format($amount, 2) }}
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