Files
sam-api/app/Http/Requests/Leave/IndexRequest.php
kent 97f22f9b98 refactor(pagination): size 초과 시 오류 대신 자동 조정으로 변경
- config/pagination.php 추가 (기본값 중앙 관리)
- HasPagination Trait 추가 (prepareForValidation에서 자동 조정)
- 22개 IndexRequest에 Trait 적용, max 규칙 제거
- 특수 케이스: Employee($maxSize=500), Audit($maxSize=200)

size/per_page가 최대값 초과 시 422 오류 대신 최대값으로 자동 조정되어
리스트가 빈 화면으로 표시되는 문제 해결

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-13 19:45:44 +09:00

33 lines
1.0 KiB
PHP

<?php
namespace App\Http\Requests\Leave;
use App\Http\Requests\Traits\HasPagination;
use Illuminate\Foundation\Http\FormRequest;
class IndexRequest extends FormRequest
{
use HasPagination;
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'user_id' => 'nullable|integer',
'status' => 'nullable|string|in:pending,approved,rejected,cancelled',
'leave_type' => 'nullable|string|in:annual,half_am,half_pm,sick,family,maternity,parental',
'date_from' => 'nullable|date',
'date_to' => 'nullable|date|after_or_equal:date_from',
'year' => 'nullable|integer|min:2020|max:2099',
'department_id' => 'nullable|integer',
'sort_by' => 'nullable|string|in:created_at,start_date,end_date,days,status',
'sort_dir' => 'nullable|string|in:asc,desc',
'per_page' => 'nullable|integer|min:1',
'page' => 'nullable|integer|min:1',
];
}
}