@extends('layouts.app') @section('page-title', 'Attendance') @section('content')
| ID | Member | Gym | Date | Check In | Check Out | Method | Action |
|---|---|---|---|---|---|---|---|
| #{{ str_pad($attendance->id, 6, '0', STR_PAD_LEFT) }} | {{ $attendance->member->full_name ?? 'N/A' }} | {{ $attendance->gym->name ?? 'N/A' }} | {{ $attendance->date->format('d/m/Y') }} | {{ $attendance->formatted_check_in_time ?? 'N/A' }} | {{ $attendance->formatted_check_out_time ?? 'N/A' }} | @if($attendance->check_in_method == 'biometric') Biometric @elseif($attendance->check_in_method == 'qr_code') QR Code @elseif($attendance->check_in_method == 'rfid') RFID @else Manual @endif | |
| No attendance records found. Record attendance | |||||||