@extends('frontend.donar.user_layouts')
@push('style')
@endpush
@section('member-content')
@if (session('success'))
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
{{ $totalDonations }}
Total Donations
৳{{ number_format($totalAmount, 2) }}
Total Donated
{{ $paidInvoices }}
Paid Invoices
{{ $unpaidInvoices }}
Unpaid Invoices
Recent Donations
@forelse ($donations as $donation)
-
Invoice #{{ $donation->invoice_no }} –
{{ number_format($donation->donation_amount, 2) }}
[{{ ucfirst($donation->payment_status) }}] on
{{ $donation->received_date ?? $donation->created_at->format('d M Y') }}
@empty
- No recent donations found.
@endforelse
@endsection