@extends('admin.layout')
@section('title', 'Dashboard')
@section('subtitle', now()->format('l, F j, Y'))
@section('content')
@if ($maintenanceMode)
⚠️ Maintenance mode is ON. Users cannot access the app.
Change
@endif
@if (! $registrationEnabled)
New registrations are disabled.
Change
@endif
@foreach ([
['Users', $stats['users_total'], 'text-blue-600'],
['Active Today', $stats['users_active_today'], 'text-emerald-600'],
['Banned', $stats['users_banned'], 'text-red-600'],
['Admins', $stats['users_admins'], 'text-purple-600'],
['Categories', $stats['categories'], 'text-indigo-600'],
['Questions (Total)', $stats['questions_total'], 'text-slate-700'],
['Questions (Active)', $stats['questions_active'], 'text-emerald-600'],
['Achievements', $stats['achievements'], 'text-amber-600'],
['Daily Challenges', $stats['daily_challenges'], 'text-pink-600'],
['Quiz Sessions', $stats['quiz_sessions_total'], 'text-slate-700'],
['Sessions Today', $stats['quiz_sessions_today'], 'text-emerald-600'],
['Battles', $stats['battles_total'], 'text-slate-700'],
['Battles Today', $stats['battles_today'], 'text-emerald-600'],
['Total XP', number_format($stats['total_xp_awarded']), 'text-yellow-600'],
['Coins in Circulation', number_format($stats['total_coins_circulating']), 'text-yellow-600'],
] as [$label, $value, $color])
{{ $label }}
{{ $value }}
@endforeach