@extends('components.app-layout') @section('title', 'Admin Dashboard - SPETA Exam Hub') @section('content')

Dashboard

Overview of your examination system

@php $stats = [ ['label' => 'Total Users', 'value' => $widgets['total_users'], 'icon' => 'M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0z', 'color' => 'primary'], ['label' => 'Students', 'value' => $widgets['total_students'], 'icon' => 'M12 14l9-5-9-5-9 5 9 5z M12 14l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z', 'color' => 'emerald'], ['label' => 'Exams', 'value' => $widgets['total_exams'], 'icon' => 'M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2', 'color' => 'amber'], ['label' => 'Active Exams', 'value' => $widgets['active_exams'], 'icon' => 'M13 10V3L4 14h7v7l9-11h-7z', 'color' => 'rose'], ]; @endphp @foreach($stats as $stat)

{{ $stat['label'] }}

{{ number_format($stat['value']) }}

@endforeach

Monthly Exam Participation

Average Performance Trend (%)

Recent Activity

View All
@forelse($recentActivities as $activity)
{{ substr($activity->user?->first_name ?? 'S', 0, 1) }}

{{ $activity->description }}

{{ $activity->created_at->diffForHumans() }} @if($activity->ip_address) ยท {{ $activity->ip_address }} @endif

@empty
No recent activity
@endforelse

Quick Stats

Pending Grading {{ $widgets['pending_grading'] }}
Pass Rate {{ $widgets['pass_rate'] }}%
Completed Today {{ $widgets['completed_exams_today'] }}
Courses {{ $widgets['total_courses'] }}
Teachers {{ $widgets['total_teachers'] }}
@push('scripts') @endpush @endsection