Files
sam-api/app/Http/Requests/Employee/IndexRequest.php

28 lines
785 B
PHP
Raw Normal View History

<?php
namespace App\Http\Requests\Employee;
use Illuminate\Foundation\Http\FormRequest;
class IndexRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'q' => 'nullable|string|max:100',
'status' => 'nullable|in:active,leave,resigned',
'department_id' => 'nullable|integer|min:1',
'has_account' => 'nullable|in:0,1,true,false',
'sort_by' => 'nullable|in:created_at,name,employee_status,department_id',
'sort_dir' => 'nullable|in:asc,desc',
'page' => 'nullable|integer|min:1',
'per_page' => 'nullable|integer|min:1|max:500', // 드롭다운 등 관리용 확장
];
}
}