{{ session('success') ? 'Success!' : 'Error!' }} {{ session('success') ?: session('error') }}
@endif
Attendance List
Image | Name | Club ID | Date | Check-in | Check-out | Status | Action |
---|---|---|---|---|---|---|---|
@if($member && $member->image_path && file_exists(storage_path('app/public/' . $member->image_path)))
![]() |
{{ $member->name ?? '—' }} | {{ $member->club_id ?? '—' }} | {{ \Carbon\Carbon::parse($attendance->date)->format('d-m-Y') }} | {{ $attendance->checkin_time ?? '—' }} | {{ $attendance->checkout_time ?? '—' }} | @if($attendance->status == 1) Present @else Absent @endif | @if($canEdit) Edit @endif @if($canDelete) @endif |
No attendance records found. |
{{ $attendances->appends(request()->query())->links() }}
@endif