23 lines
497 B
PHP
23 lines
497 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Events;
|
|
|
|
use App\Http\Requests\ApiFormRequest;
|
|
|
|
class EventStudentsWithChargesRequest extends ApiFormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return $this->user() !== null;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'parent_id' => ['required', 'integer', 'min:1'],
|
|
'school_year' => ['required', 'string', 'max:20'],
|
|
'semester' => ['required', 'string', 'max:20'],
|
|
];
|
|
}
|
|
}
|