@extends('layouts.admin') @section('header')
| # | Employee No | Staff Name | Date | Check-In Time | Check-Out Time | Duration | Image | |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $attendance->user->employee?->employee_no ?? 'N/A' }} | {{ $attendance->user->name }} | {{ $attendance->attendance_date->format('M d, Y') }} @if($isToday) TODAY 🎯 @endif | {{ $attendance->check_in_time->format('H:i') }} | @if($hasCheckedOut) {{ $attendance->check_out_time->format('H:i') }} @else - @endif | @if($hasCheckedOut) {{ $attendance->getFormattedDuration() }} @else - @endif |
|
|
| No attendance records found. | ||||||||