@extends('layouts.admin.layout')
@section('content')
@php
$locked = (bool) $session->locked_at;
@endphp
{{-- ── Header ──────────────────────────────────────────────────────────── --}}
{{ $session->event->title }}
{{ \Carbon\Carbon::parse($session->attendance_date)->format('D, d M Y') }}
@if($locked)
Session is locked — check-ins are disabled.
@endif
@unless($locked)
{{-- ── Mode tabs ────────────────────────────────────────────────────────── --}}
{{-- ── Search tab ──────────────────────────────────────────────────── --}}
{{-- ── Scan tab ─────────────────────────────────────────────────────── --}}
{{-- Scanning crosshair overlay --}}
Point the camera at a member's QR code
@endunless
{{-- ── Checked-in list ─────────────────────────────────────────────────── --}}
@endsection
@push('scripts')
{{-- jsQR for camera QR decoding --}}
@endpush