@extends('layouts.app') @section('title', 'Donation Receipt') @section('content')
Thank you for your generous donation
123 Charity Street
New York, NY 10001
Tax ID: 12-3456789
| Date: | {{ $donation->created_at->format('F j, Y') }} |
|---|---|
| Amount: | ${{ number_format($donation->amount, 2) }} |
| Payment Method: | {{ ucfirst(str_replace('_', ' ', $donation->payment_gateway)) }} |
| Name: | {{ $donation->name }} |
|---|---|
| Email: | {{ $donation->email }} |
| Address: | {{ $donation->address }} |
| City/State/Zip: | {{ $donation->city }}, {{ $donation->state }} {{ $donation->pincode }} |
| Country: | {{ $donation->country }} |
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