@extends('layouts.admin') @section('title', 'Tithes') @section('page-title', 'Tithes') @section('page-subtitle', 'Manage member tithes') @section('content')
Total Tithes
GHS {{ number_format($stats['total'], 2) }}
Members Paid
{{ $stats['paid_count'] }}
Outstanding
{{ $stats['outstanding_count'] }}
| Member | Receipt | Amount | Month | Date | Actions |
|---|---|---|---|---|---|
|
@if($tithe->member->profile_photo)
{{ substr($tithe->member->first_name, 0, 1) }}{{ substr($tithe->member->last_name, 0, 1) }}
@endif
{{ $tithe->member->full_name }} {{ $tithe->member->member_id }} |
{{ $tithe->receipt_number }} | GHS {{ number_format($tithe->amount, 2) }} | {{ \Carbon\Carbon::parse($tithe->month . '-01')->format('M Y') }} | {{ $tithe->payment_date->format('M d, Y') }} | |
|
No tithes recorded yet |
|||||