@extends('layouts.superadmin') @section('title', 'Dashboard') @section('page-title', 'Super Admin Dashboard') @section('content') {{-- Stats --}}
@foreach([ ['label'=>'Total Tenants', 'value'=>$stats['total_tenants'], 'color'=>'blue', 'icon'=>'🏢'], ['label'=>'Active', 'value'=>$stats['active_tenants'],'color'=>'green','icon'=>'✅'], ['label'=>'On Trial', 'value'=>$stats['trial_tenants'], 'color'=>'yellow','icon'=>'⏳'], ['label'=>'Suspended', 'value'=>$stats['suspended'], 'color'=>'red', 'icon'=>'🚫'], ] as $s)
{{ $s['icon'] }}

{{ $s['label'] }}

{{ $s['value'] }}

@endforeach
{{-- Recent Tenants --}}

Recent Registrations

View all →
@foreach($recentTenants as $tenant) @endforeach
Business Email Plan Status Joined
{{ $tenant->profile->business_name ?? $tenant->name }} {{ $tenant->email }} {{ $tenant->plan }} {{ ucfirst($tenant->status) }} {{ $tenant->created_at->format('d M Y') }}
{{-- Plans summary --}}

Plans Overview

@foreach($plans as $plan)

{{ $plan->name }}

₹{{ number_format($plan->price_monthly, 0) }}/mo

{{ $plan->tenants_count }}

tenants

@endforeach Manage Plans →
@endsection