25 lines
607 B
PHP
25 lines
607 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Reimbursements;
|
|
|
|
use App\Http\Requests\ApiFormRequest;
|
|
|
|
class ReimbursementExportRequest extends ApiFormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'type' => ['nullable', 'in:processed,under_processing'],
|
|
'school_year' => ['nullable', 'string', 'max:20'],
|
|
'semester' => ['nullable', 'string', 'max:20'],
|
|
'status' => ['nullable', 'string', 'max:50'],
|
|
'user_id' => ['nullable', 'integer', 'min:1'],
|
|
];
|
|
}
|
|
}
|