📅 Date: {{ $event->start_datetime->format('l, F d, Y') }}
🕐 Time: {{ $event->start_datetime->format('h:i A') }} @if($event->end_datetime) - {{ $event->end_datetime->format('h:i A') }} @endif
📍 Location: {{ $event->location ?? 'Church Premises' }}
Members Present
QR Check-ins
Manual Entries
| # | Member ID | Name | Phone | Check In | Check Out | Method | Duration |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $attendance->member->member_id }} | {{ $attendance->member->full_name }} | {{ $attendance->member->phone ?? 'N/A' }} | {{ $attendance->checked_in_at->format('h:i A') }} | @if($attendance->checked_out_at) {{ $attendance->checked_out_at->format('h:i A') }} @else Active @endif | @if($attendance->attendance_method === 'qr_code') 📱 QR Code @else ✏️ Manual @endif | @if($attendance->checked_out_at) {{ $attendance->checked_in_at->diffInMinutes($attendance->checked_out_at) }}m @else - @endif |
⚠️ No attendance records found for this event.
@endif