@extends('layouts.admin') @section('title', 'Member Tithe Ledger') @section('page-title', 'Member Tithe Ledger') @section('page-subtitle', $member->full_name) @section('content')
Total Paid ({{ $year }})
GHS {{ number_format($totalPaid, 2) }}
Number of Payments
{{ $tithes->count() }}
| Receipt | Month | Amount | Date | Status |
|---|---|---|---|---|
| {{ $tithe->receipt_number }} | {{ \Carbon\Carbon::parse($tithe->month . '-01')->format('F Y') }} | GHS {{ number_format($tithe->amount, 2) }} | {{ $tithe->payment_date->format('M d, Y') }} | {{ ucfirst($tithe->payment_status) }} |
|
No tithes recorded for {{ $year }} |
||||