@extends('layouts.app') @section('title', 'Gate Scanner & Attendance Dashboard - MTPGA') @section('content')

Total Registered

{{ $stats['total'] }}

Marked Present

{{ $stats['checked_in'] }}

Pending Arrival

{{ $stats['pending'] }}

Fast Gate Check-In

@csrf
@forelse($registrations as $reg) @empty @endforelse
Attendee Name Reg Code Pass Type Contact Status Check-In Time
{{ $reg->full_name }} {{ $reg->registration_code }} {{ $reg->pass_type }} {{ $reg->phone }}
{{ $reg->email }}
@if($reg->status === 'checked_in') Present @else Pending @endif {{ $reg->checked_in_at ? $reg->checked_in_at->format('M d, h:i A') : '—' }}
No attendee records found.
{{ $registrations->links() }}
@endsection @push('scripts') @endpush