@extends('layouts.app') @section('title', 'Donation Receipt') @section('content')

Donation Receipt

Thank you for your generous donation

Logo

123 Charity Street

New York, NY 10001

Tax ID: 12-3456789

Receipt #{{ $donation->transaction_id }}
Date: {{ $donation->created_at->format('F j, Y') }}
Amount: ${{ number_format($donation->amount, 2) }}
Payment Method: {{ ucfirst(str_replace('_', ' ', $donation->payment_gateway)) }}
Donor Information
Name: {{ $donation->name }}
Email: {{ $donation->email }}
Address: {{ $donation->address }}
City/State/Zip: {{ $donation->city }}, {{ $donation->state }} {{ $donation->pincode }}
Country: {{ $donation->country }}
Donation Details

This is to certify that {{ $donation->name }} has made a donation of ${{ number_format($donation->amount, 2) }} to our organization on {{ $donation->created_at->format('F j, Y') }}.

No goods or services were provided in exchange for this contribution.

This receipt may be used for tax deduction purposes as allowed by law.

Thank you for your support!

For any questions, please contact donations@example.com

@endsection