@extends('layouts.admin.layout') @section('content')

Donation Details

← Back
Donor @if($donation->user) {{ optional($donation->user->userprofile)->firstname }} {{ optional($donation->user->userprofile)->lastname }} ({{ $donation->user->email }}) @else — @endif
Amount {{ $donation->currency }} {{ number_format($donation->amount, 2) }}
Category {{ $donation->category ?? '—' }}
Method {{ $donation->method }}
Status @php $colors = ['pending' => 'bg-yellow-100 text-yellow-700', 'completed' => 'bg-green-100 text-green-700', 'cancelled' => 'bg-red-100 text-red-700']; @endphp {{ ucfirst($donation->status) }}
Note {{ $donation->note ?? '—' }}
Date {{ ($donation->donated_at ?? $donation->created_at)->format('d M Y, h:i A') }}
@if($donation->status === 'pending')
@csrf @method('PATCH')
@csrf @method('PATCH')
@endif
@endsection