Rent Payment Statement
Generated on {{ $generatedDate->format('F j, Y') }}
Tenant:
{{ $tenant?->full_name ?? 'N/A' }} |
Property:
{{ $property?->name ?? 'N/A' }} | @if($lease->unit)
Unit:
{{ $lease->unit->unit_number }} | @endif
Monthly Rent:
UGX {{ number_format($lease->monthly_rent ?? 0) }}
Expected Total
UGX {{ number_format($expected) }}
Total Paid
UGX {{ number_format($totalPaid) }}
Balance
UGX {{ number_format($balance) }}
Lease Period
{{ $lease->lease_start_date?->format('M Y') }} - {{ $lease->lease_end_date?->format('M Y') }}
#
Month
Amount Paid
Date Paid
Status
@foreach($months as $index => $month)
{{ $index + 1 }}
{{ $month['month'] }}
{{ $month['amount'] > 0 ? 'UGX ' . number_format($month['amount']) : '—' }}
{{ $month['date'] }}
{{ $month['status'] }}
@endforeach