@extends('layouts.admin') @section('title', 'System Overview') @section('header_title', 'System Intelligence Dashboard') @section('content')
Total System Users
{{ number_format($stats['total_users']) }}
Approved Venues
{{ number_format($stats['total_clubs']) }}
Site-Wide Bookings
{{ number_format($stats['total_bookings']) }}
Total Platform Revenue
Rs. {{ number_format($stats['total_revenue']) }}

Venue Audit Required

Audit Inventory
@forelse($pendingClubs as $club) @empty @endforelse
Establishment Ownership Identity Sport Type System Audit Received On Operations
{{ $club->name }}
{{ Str::limit($club->address, 40) }}
{{ $club->owner->name }} {{ $club->sport->name ?? 'Mixed' }} Awaiting Audit {{ $club->created_at->format('M d, H:i') }}
@csrf
All venue registration requests have been audited and cleared.

User Growth Timeline

Recent Platform Activity

@foreach($recentUsers as $user) @endforeach
User Profile Role Status
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
{{ $user->email }}
{{ ucfirst($user->role) }} Live
@endsection