Platform Overview

All organizations · Real-time platform metrics

Live
{{-- KPI cards --}}
Orgs

{{ $stats['total_orgs'] ?? 0 }}

Total organizations

Locations

{{ $stats['total_branches'] ?? 0 }}

Total branches

Members

{{ number_format($stats['total_members'] ?? 0) }}

Across all gyms

Staff

{{ number_format($stats['total_users'] ?? 0) }}

Active platform users

{{-- Revenue row --}}
{{-- MRR card --}}

MRR

₹{{ number_format($stats['mrr'] ?? 0) }}

@php $mrrGrowth = $stats['mrr_growth'] ?? 0; @endphp {{ abs($mrrGrowth) }}% vs last month

Last month

₹{{ number_format($stats['last_month_mrr'] ?? 0) }}

{{-- 6-month bar chart --}} @php $maxRev = max(collect($monthly_revenue ?? [])->pluck('revenue')->push(1)->toArray()); @endphp

Revenue Trend

Last 6 months

@foreach($monthly_revenue ?? [] as $m) @php $barPct = $maxRev > 0 ? max(4, round($m['revenue'] / $maxRev * 100)) : 4; @endphp

{{ explode(' ', $m['month'])[0] }}

@endforeach
{{-- Organizations table --}}

Recent Organizations

Latest gyms on the platform

View all
@forelse($orgs['data'] ?? [] as $org) @empty @endforelse
Organization Branches Staff Members Actions
{{ strtoupper(substr($org['name'] ?? '?', 0, 1)) }}

{{ $org['name'] }}

{{ $org['slug'] }}

{{ $org['branches_count'] ?? 0 }} {{ $org['users_count'] ?? 0 }} {{ $org['members_count'] ?? 0 }}
View
@csrf
No organizations yet.