37 lines
987 B
PHP
37 lines
987 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Enums\TypeLesson;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class LessonPostRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => 'required|string|max:255',
|
|
'type' => ['required', Rule::in(TypeLesson::cases())],
|
|
'lesson_date' => 'required|date',
|
|
'description' => 'nullable|string|max:250',
|
|
'grade_id' => 'required|exists:grades,id',
|
|
'teacher_id' => 'required|exists:teachers,id',
|
|
'subject_id' => 'required|exists:subjects,id',
|
|
];
|
|
}
|
|
}
|