@extends('layouts.admin') @section('title', 'Member Tithe Ledger') @section('page-title', 'Member Tithe Ledger') @section('page-subtitle', $member->full_name) @section('content')
Back to Tithes

{{ $member->full_name }}

{{ $member->member_id }}

Full Ledger

Total Paid ({{ $year }})

GHS {{ number_format($totalPaid, 2) }}

Number of Payments

{{ $tithes->count() }}

@forelse($tithes as $tithe) @empty @endforelse
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 }}

@endsection