diff --git a/app/Http/Controllers/Api/Admin/HR/EmployeeSalaryController.php b/app/Http/Controllers/Api/Admin/HR/EmployeeSalaryController.php index 76a4b543..d6c4324f 100644 --- a/app/Http/Controllers/Api/Admin/HR/EmployeeSalaryController.php +++ b/app/Http/Controllers/Api/Admin/HR/EmployeeSalaryController.php @@ -62,7 +62,7 @@ public function update(Request $request, int $id): JsonResponse $validated = $request->validate([ 'annual_salary' => 'nullable|integer|min:0', 'meal_allowance' => 'nullable|integer|min:0|max:1000000', - 'fixed_overtime_hours' => 'nullable|integer|min:0|max:100', + 'fixed_overtime_hours' => 'nullable|integer|min:0|max:52', 'effective_date' => 'nullable|date', 'notes' => 'nullable|string|max:500', ]); diff --git a/resources/views/hr/employees/partials/salary-info.blade.php b/resources/views/hr/employees/partials/salary-info.blade.php index be157734..35050cad 100644 --- a/resources/views/hr/employees/partials/salary-info.blade.php +++ b/resources/views/hr/employees/partials/salary-info.blade.php @@ -166,7 +166,7 @@ class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:rin
변동값 (사원별 상이)