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

Member

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

{{ $welfare->member->member_id }}

Church

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

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

Payment Date

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

Month

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

Payment Method

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

Recorded By

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

@if($welfare->transaction_reference)

Transaction Reference

{{ $welfare->transaction_reference }}

@endif @if($welfare->arrears > 0)

Arrears

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

@endif
@if($welfare->notes)

Notes

{{ $welfare->notes }}

@endif

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

@endsection