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