@extends('components.app-layout') @section('title', 'Attendance Management') @section('subtitle', 'QR Code Attendance System') @section('content')

Attendance Management

Track member attendance with QR code scanning

Statistics

Today's Attendance

{{ $stats['today_attendance'] }}

This Week

{{ $stats['this_week_attendance'] }}

This Month

{{ $stats['this_month_attendance'] }}

Active QR Codes

{{ $stats['total_events_with_qr'] }}

Recent Events

Last 30 days
@if($events->count() > 0)
@foreach($events as $event)

{{ $event->title }}

{{ $event->start_datetime->format('M d, Y \a\t g:i A') }}

{{ $event->attendances->count() }} attendees @if($event->qrCodes->where('is_active', true)->count() > 0) QR Active @endif
@endforeach
{{ $events->links() }}
@else

No events found

Events with attendance tracking will appear here

@endif
@push('scripts') @endpush @endsection