@extends('layouts.customer') @section('title','Donation Successful') @section('page-title','Donation Successful') @section('styles') @endsection @section('content')

Thank You! 🎉

Your donation has been processed successfully.

@if($donation)
{{ $donation->donation_id }}
Donation ID {{ $donation->donation_id }}
Amount ${{ number_format($donation->amount,2) }} AUD
Type {{ ucfirst($donation->type) }}
Donor {{ $donation->anonymous ? 'Anonymous' : ($donation->donor_name ?? $donation->business_name ?? '—') }}
Status ✅ Paid
🏆 Your donation has been added to the Wall of Fame!
@endif
📊 Dashboard 💳 History
@endsection