@extends('layouts.dashboard') @section('title', 'System Usage') @section('header', 'System Usage Analytics') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
← Back to Analytics

Total Properties

{{ number_format($usage['total_properties'], 0) }}

Total Tenants

{{ number_format($usage['total_tenants'], 0) }}

Total Leases

{{ number_format($usage['total_leases'], 0) }}

Total Payments

{{ number_format($usage['total_payments'], 0) }}

Active Users

{{ number_format($usage['active_users'], 0) }}

Companies with Subscriptions

{{ number_format($usage['companies_with_subscriptions'], 0) }}

Usage by Company (Top 20)

@forelse($usageByCompany as $company) @empty @endforelse
Company Properties Tenants Leases Payments Users
{{ $company->name }} {{ $company->properties_count }} {{ $company->tenants_count }} {{ $company->leases_count }} {{ $company->payments_count }} {{ $company->users_count }}
No usage data found.
@endsection