@extends('layouts.dashboard') @section('title', 'Company Usage') @section('header', $company->name . ' - Usage Statistics') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')

Current Usage

Users
{{ $usage['users_count'] }} / {{ $limits['users_limit'] ?? '∞' }}
Properties
{{ $usage['properties_count'] }} / {{ $limits['properties_limit'] ?? '∞' }}
Tenants
{{ $usage['tenants_count'] }}
Leases
{{ $usage['leases_count'] }}
Payments
{{ $usage['payments_count'] }}

Revenue

Total Revenue
{{ number_format($usage['total_revenue'], 0) }} TZS
Monthly Revenue
{{ number_format($usage['monthly_revenue'], 0) }} TZS

Subscription Plan Limits

@if($company->activeSubscription)
Plan
{{ $company->activeSubscription->plan->name }}
Properties Limit
{{ $limits['properties_limit'] ?? 'Unlimited' }}
Users Limit
{{ $limits['users_limit'] ?? 'Unlimited' }}
@else

No active subscription plan

@endif
Back to Company
@endsection