@extends('layouts.app') @section('title', 'Admin Overview Dashboard - MTPGA') @section('content')
Total Registered

{{ number_format($totalRegistered) }}

Total database capacity

Present (Checked In)

{{ number_format($totalCheckedIn) }}

{{ $checkInPercentage }}% turn-out rate

Pending Gate Entry

{{ number_format($totalPending) }}

Awaiting scanner verification

Intl. Delegates

{{ number_format($passStats['international']) }}

Overseas attendees

Live Check-in Rate

Gate Completion {{ $checkInPercentage }}%

Pass Categories

General Admission {{ $passStats['general'] }}
International {{ $passStats['international'] }}
Virtual Pass {{ $passStats['virtual'] }}

Live Gate Check-In Stream

Real-Time
@forelse($recentCheckIns as $item) @empty @endforelse
Attendee Reg Code Pass Checked In At
{{ $item->full_name }} {{ $item->registration_code }} {{ $item->pass_type }} {{ $item->checked_in_at ? $item->checked_in_at->format('h:i:s A') : 'N/A' }}
No check-ins recorded today yet.

System Audit Trail

@forelse($recentLogs as $log)
{{ $log->action }} {{ $log->created_at->diffForHumans() }}

{{ $log->description }}

@empty

No system logs recorded.

@endforelse
@endsection