@extends('layouts.admin') @section('title', 'Offering Receipt') @section('page-title', 'Offering Receipt') @section('content')

{{ $offering->service_name }}

{{ $offering->offering_date->format('F d, Y') }}

Amount GH₵{{ number_format($offering->amount, 2) }}

Offering Type

{{ ucfirst(str_replace('_', ' ', $offering->offering_type)) }}

Collection Method

{{ ucfirst(str_replace('_', ' ', $offering->collection_method)) }}

@if($offering->collected_by)

Collected By

{{ $offering->collected_by }}

@endif

Recorded By

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

@if($offering->notes)

Notes

{{ $offering->notes }}

@endif

{{ church_setting('church_tagline', 'Growing in Grace') }}

@endsection