@extends("layouts.app", ["title" => "Payment Receipt"]) @section("content_body") @include("shared.partials.page-title", ["subtitle" => "Finance", "title" => "Payment Receipt"])

{{ setting('site_name', 'EMR System Portal') }}

Lusaka, Zambia

Receipt #{{ $payment->id }}

Date: {{ $payment->created_at->format('Y-m-d H:i') }}


Billed To:
{{ $payment->family->name }} Household
Code: {{ $payment->family->family_code }}
Phone: {{ $payment->family->phone ?? 'N/A' }}
Address: {{ $payment->family->address ?? 'N/A' }}
Payment Method:
Mobile Money Transaction
MNO Provider: {{ ucfirst($payment->provider) }}
Simulated Number: {{ $payment->phone_number ?? 'N/A' }}
Transaction Ref: {{ $payment->transaction_reference }}
# Description Quantity Unit Price Total
1 Primary Healthcare Subscription Fee
Zambian Household Coverage (Monthly Plan)
1 ${{ number_format($payment->amount, 2) }} ${{ number_format($payment->amount, 2) }}

Sub-Total: ${{ number_format($payment->amount, 2) }}

VAT (0%): $0.00

Grand Total: ${{ number_format($payment->amount, 2) }}

PAID / COMPLETED

Back to Ledger
@endsection