Consolidated business metrics and operational diagnostics across all locations.
| Suite Category | Revenue Contribution | Total Bookings | Inventory Units | Utilization Ratios |
|---|---|---|---|---|
|
{{ $apt['name'] }}
|
₦{{ number_format($apt['revenue'], 2) }}
|
{{ $apt['bookings_count'] }} bookings
|
{{ $apt['units_count'] }} active units
|
@php
$totalB = $financialSummary['total_bookings'] ?: 1;
$utilization = round(($apt['bookings_count'] / $totalB) * 100);
@endphp
{{ $utilization }}%
|