@php $configData = Helper::appClasses(); $inv = $payment->invoice; $lease = $inv->lease; $property = $lease->unit->property; $tenant = $lease->tenant; @endphp @extends('layouts/layoutMaster') @section('title', 'Official Receipt - ' . $payment->transaction_reference) @section('page-style') @endsection @section('content')

Payment Receipt

Official receipt for transaction {{ $payment->transaction_reference }}

Back to Invoice
South Front Technologies

SOUTH FRONT TECHNOLOGIES

Smarter Property Management • Nairobi, Kenya
PAYMENT CONFIRMED
Receipt No: RCP-{{ $payment->id }}
Issued: {{ $payment->paid_at->format('d M Y, h:i A') }}
RECEIVED FROM (TENANT):
{{ $tenant->name }}
Email: {{ $tenant->email }}
Phone: {{ $tenant->phone_number ?? 'N/A' }}
PROPERTY & UNIT:
{{ $property->name }}
Unit: {{ $lease->unit->unit_number }}
Owner: {{ $property->owner->name ?? 'Landlord' }}
Payment Description Mode / Channel Transaction Code Amount Cleared
Payment for Invoice #{{ $inv->invoice_number }}
Billing period: {{ $inv->billing_period_start->format('d M') }} - {{ $inv->billing_period_end->format('d M Y') }}
{{ $payment->payment_method }} {{ $payment->transaction_reference }} Ksh {{ number_format($payment->amount, 2) }}
Invoice Total Ksh {{ number_format($inv->amount, 2) }}
Total Paid Ksh {{ number_format($inv->paid_amount, 2) }}
Residual Balance Ksh {{ number_format($inv->balance_due, 2) }}

Thank you for your timely payment. This receipt is an electronically verified confirmation generated by the Property Management Platform.

Authorized Officer
South Front Technologies Accounts Bureau
@endsection