fix: [hr] 월 고정연장근로시간 최대값 52시간으로 제한

This commit is contained in:
김보곤
2026-03-12 14:39:00 +09:00
parent c42981cbe3
commit 4d160b5d7b
2 changed files with 2 additions and 2 deletions

View File

@@ -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',
]);