Today's Attendance Overview

{{ now()->format('l, d-m-Y') }}
Total Employees
{{ $totalEmployees }}
Present
{{ $present }}
Absent
{{ $absent }}
On Leave
{{ $leave }}
Today's Attendance Details
@forelse($attendances as $key => $row) @empty @endforelse
# Employee Name ID Check In Check Out Status
{{ $key + 1 }} {{ $row->employee->full_name }} {{ $row->employee->id }} {{ $row->clock_in ?? '-' }} {{ $row->clock_out ?? '-' }} {{ ucfirst($row->attendance_status) }}
No attendance data for today