@can('create', \App\Models\Tithe::class) @else @endcan
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Tithe Records

Total Records: {{ number_format($tithes->total()) }}

@forelse($tithes as $tithe) @empty @endforelse
Member Amount Date Method Reference Actions
{{ $tithe->member->first_name ?? '' }} {{ $tithe->member->last_name ?? '' }}
{{ $tithe->member->member_id ?? 'No Member ID' }}
{{ church_currency() }} {{ number_format((float) $tithe->amount, 2) }} {{ $tithe->payment_date ? \Carbon\Carbon::parse($tithe->payment_date)->format('d M Y') : 'N/A' }} {{ $tithe->payment_method ?: 'N/A' }} {{ $tithe->reference ?: 'N/A' }}
@can('view', $tithe) Receipt @endcan
No tithe records found.
@if($tithes->hasPages())
{{ $tithes->links() }}
@endif