#{{ $donation->invoice_no }}
{{ ucfirst($donation->payment_status) }}
{{ number_format($donation->donation_amount, 2) }}
Payment Type: {{ ucfirst(str_replace('_', ' ', $donation->payment_type)) }}
Account:
@if ($donation->account)
@if ($donation->account->gateway_type == 'Mobile Bank')
{{ $donation->account->company_name }} ({{ $donation->account->mobile_number }})
@elseif ($donation->account->gateway_type == 'Bank')
{{ $donation->account->bank_name }} (Acc: {{ $donation->account->account_number }})
@endif
@else
N/A
@endif
Transaction: {{ $donation->transaction_no ?? '-' }}