@extends('layouts.admin') @section('title', 'QR Code Check-In') @section('page-title', 'QR Code Check-In') @section('page-subtitle', 'Scan member QR codes for attendance') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

QR Code Scanner

Select a service and scan the member's QR code to check them in

@csrf
@error('service_id')

{{ $message }}

@enderror
@error('qr_code')

{{ $message }}

@enderror

How to use:

  1. 1. Select the service for which you're taking attendance
  2. 2. Scan or enter the member's QR code value
  3. 3. The system will automatically check them in for that service

Mobile Check-In

Members can check themselves in using their smartphones by visiting:

{{ url('/check-in') }}/[member-qr-code]

Sample QR Code:

Mobile Check-In QR Code

{{ url('/check-in') }}/SAMPLE123

Each member has a unique QR code in their profile. Share their personal check-in link for easy self-service attendance.

Print QR Codes

Generate and print QR codes for members who don't have smartphones.

Tip: Download individual member QR codes from their profile page for personalized attendance cards.

@endsection @push('scripts') @endpush