Total Employees
{{ $totalEmployees }}
Present Today
{{ $todayPresent }}
Absent Today
{{ $todayAbsent }}
Checked in at: {{ \Carbon\Carbon::parse($employeeAttendance->check_in)->format('h:i A') }}
Checked out at: {{ \Carbon\Carbon::parse($employeeAttendance->check_out)->format('h:i A') }}
| Employee | Check In | Check Out | Status |
|---|---|---|---|
| {{ $attendance->employee->full_name }} | {{ $attendance->check_in ? \Carbon\Carbon::parse($attendance->check_in)->format('h:i A') : '-' }} | {{ $attendance->check_out ? \Carbon\Carbon::parse($attendance->check_out)->format('h:i A') : '-' }} | {{ ucfirst($attendance->status) }} |
| No attendance records for today. | |||