@extends('layouts.admin') @section('title', 'Pledge Details') @section('page-title', 'Pledge Details') @section('page-subtitle', 'View pledge information') @section('content')
Created {{ $pledge->created_at->format('M d, Y') }}
Member
{{ $pledge->member?->full_name ?? 'N/A' }}
Campaign
{{ $pledge->campaign?->name ?? 'N/A' }}
Pledge Amount
GH₵{{ number_format($pledge->pledge_amount, 2) }}
Amount Paid
GH₵{{ number_format($pledge->amount_paid, 2) }}
Remaining Amount
GH₵{{ number_format($pledge->remaining_amount, 2) }}
Progress
Frequency
{{ str_replace('_', '-', $pledge->frequency) }}
Start Date
{{ $pledge->start_date->format('M d, Y') }}
End Date
{{ $pledge->end_date->format('M d, Y') }}
Notes
{{ $pledge->notes }}