Total Collected
UGX {{ number_format($total_collected, 2) }}
{{ $total_transactions }} transactions
Expected Rent
UGX {{ number_format($expected_rent, 2) }}
For the period
Collection Rate
{{ number_format($collection_rate, 1) }}%
Average Payment
UGX {{ number_format($average_payment, 2) }}
Per transaction
{{-- Payment Status --}}
Collections by {{ ucfirst($group_by) }}
@if(count($grouped_data) > 0)
@foreach($grouped_data as $label => $amount)
@php
$maxAmount = max($grouped_data);
$percentage = $maxAmount > 0 ? ($amount / $maxAmount) * 100 : 0;
@endphp
{{ $label }}
UGX {{ number_format($amount, 2) }}
@endforeach
@else
No data available for the selected period.
@endif
{{-- Top Tenants --}}
@if(count($top_tenants) > 0)