@extends('layouts.admin') @section('title', 'Tithes & Welfare') @section('page-title', 'Tithes & Welfare') @section('page-subtitle', 'Manage member contributions') @section('content')

Year {{ $year }}

Total Tithes

GHS {{ number_format($stats['total_tithes'], 2) }}

Total Welfare

GHS {{ number_format($stats['total_welfare'], 2) }}

Members (Tithes)

{{ $stats['members_paid_tithe'] }} / {{ $stats['total_members'] }}

Members (Welfare)

{{ $stats['members_paid_welfare'] }} / {{ $stats['total_members'] }}

Recent Tithes

View All
@forelse($recentTithes as $tithe)

{{ $tithe->member->full_name }}

{{ $tithe->receipt_number }}

GHS {{ number_format($tithe->amount, 2) }}

{{ $tithe->payment_date->format('M d') }}

@empty

No tithes recorded yet

@endforelse

Recent Welfare

View All
@forelse($recentWelfare as $welfare)

{{ $welfare->member->full_name }}

{{ $welfare->receipt_number }}

GHS {{ number_format($welfare->amount, 2) }}

{{ $welfare->payment_date->format('M d') }}

@empty

No welfare contributions recorded yet

@endforelse

Tithes

Manage tithe records

Welfare

Manage welfare contributions

Reports

View detailed reports

@endsection