attendanceService->getMonthlyStats(); $departments = $this->attendanceService->getDepartments(); $employees = $this->attendanceService->getActiveEmployees(); $statusMap = Attendance::STATUS_MAP; return view('hr.attendances.index', [ 'stats' => $stats, 'departments' => $departments, 'employees' => $employees, 'statusMap' => $statusMap, ]); } }