@extends('layouts.admin') @section('title', 'Donation Receipt') @section('page-title', 'Donation Receipt') @section('page-subtitle', 'Receipt #' . $donation->receipt_number) @section('content')
Donation Receipt
@if(church_setting('church_address')){{ church_setting('church_address') }}
@endif@if(church_setting('church_phone')){{ church_setting('church_phone') }}@endif @if(church_setting('church_email')) | {{ church_setting('church_email') }}@endif
{{ $donation->receipt_number }}
Donor
@if($donation->is_anonymous)Anonymous
@else{{ $donation->donor_name ?? $donation->member?->full_name ?? 'Unknown' }}
@if($donation->member){{ $donation->member->member_id }}
@endif @endifDonation Type
{{ $donation->donationType?->name ?? 'N/A' }}
Campaign
{{ $donation->campaign?->name ?? 'General Fund' }}
Payment Method
{{ ucfirst(str_replace('_', ' ', $donation->payment_method)) }}
{{ $donation->donor_email }}
Phone
{{ $donation->donor_phone }}
Notes
{{ $donation->notes }}
Thank you for your donation! {{ church_setting('church_tagline', 'Growing in Grace') }}
Date: {{ $donation->donation_date?->format('F d, Y') }}