{{-- Enhanced Admin Dashboard with New UI System --}}

{{ __('Admin Dashboard') }}

System overview and management center

Welcome back, {{ Auth::user()->name }}!

Here's what's happening in your system today.

{{ now()->format('d M') }}
{{ now()->format('l') }}

Total Schools

{{ $stats['total_schools'] }}

+12% this month

Total Users

{{ number_format($stats['total_users']) }}

+8% this week

Total Assessments

{{ number_format($stats['total_assessments']) }}

{{ $stats['total_assessments'] - $stats['completed_assessments'] }} in progress

Completion Rate

{{ $stats['total_assessments'] > 0 ? number_format(($stats['completed_assessments'] / $stats['total_assessments']) * 100, 1) : 0 }}%

{{ $stats['completed_assessments'] }} of {{ $stats['total_assessments'] }} completed

Users by Role

Distribution across system

View all →
@foreach($usersByRole as $role => $count)
{{ ucfirst($role) }} {{ number_format($count) }}
@endforeach

Assessment Progress

Monthly completion trends

{{ number_format(($stats['completed_assessments'] / max($stats['total_assessments'], 1)) * 100, 1) }}% completed

Recent Activity

Last 24 hours

Live
@for($i = 0; $i < 5; $i++)
@if($i % 4 == 0) @elseif($i % 4 == 1) @elseif($i % 4 == 2) @else @endif

@if($i % 4 == 0) Assessment completed: Digital Teaching Skills - Score: 88% @elseif($i % 4 == 1) New user registered: Mathematics Teacher at SMA Negeri 1 @elseif($i % 4 == 2) School profile updated: SMK Negeri 2 Bandung @else New assessment started: Student Digital Literacy - Grade 10A @endif

{{ rand(1, 60) }} minutes ago

@endfor