@php
$stats = [
['Total users', \App\Models\User::count(), 'text-brand-600'],
['Admins', \App\Models\User::where('is_admin', true)->count(), 'text-emerald-600'],
['Active subscriptions', '—', 'text-amber-600'],
['Meetings this month', '—', 'text-indigo-600'],
];
@endphp
@foreach ($stats as [$label, $value, $color])
{{ $label }}
{{ $value }}
@endforeach
📊 Detailed admin management (users, plans, meetings, payments, subscriptions, blog, contacts) is built in later phases.