update($newDetails); } public function getAttendanceByEmployeeId(int $id){ return Attendance::where([ ['employee_id', $id] ]) ->latest() ->get(); } }