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