@extends('layouts.admin') @section('title', 'Tithe Receipt') @section('page-title', 'Tithe Receipt') @section('page-subtitle', $tithe->receipt_number) @section('content')
Back to Tithes

Member

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

{{ $tithe->member->member_id }}

Church

{{ $tithe->church->name ?? 'N/A' }}

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

Payment Date

{{ $tithe->payment_date->format('F d, Y') }}

Month

{{ \Carbon\Carbon::parse($tithe->month . '-01')->format('F Y') }}

Payment Method

{{ ucwords(str_replace('_', ' ', $tithe->payment_method)) }}

Recorded By

{{ $tithe->recorder->name ?? 'System' }}

@if($tithe->transaction_reference)

Transaction Reference

{{ $tithe->transaction_reference }}

@endif
@if($tithe->notes)

Notes

{{ $tithe->notes }}

@endif

Thank you for your tithe! {{ church_setting('church_tagline', 'Growing in Grace') }}

@endsection