Roman_applicant-site/app/Http/Requests/UpdateEducationalInstitutio...

38 lines
893 B
PHP
Raw Permalink Normal View History

2024-02-07 10:18:46 +03:00
<?php
namespace App\Http\Requests;
2024-02-07 19:27:25 +03:00
use Illuminate\Contracts\Validation\ValidationRule;
2024-02-07 10:18:46 +03:00
use Illuminate\Foundation\Http\FormRequest;
2024-02-07 19:27:25 +03:00
use Illuminate\Validation\Rule;
2024-02-07 10:18:46 +03:00
class UpdateEducationalInstitutionRequest 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.
*
2024-02-07 19:27:25 +03:00
* @return array<string, ValidationRule|array|string>
2024-02-07 10:18:46 +03:00
*/
public function rules(): array
{
return [
'position' => 'int|max:255',
'description' => 'string',
2024-02-07 19:27:25 +03:00
'name' => [
'required',
'string',
'max:255',
"unique:educational_institutions,name,{$this->educational_institution->id}",
],
2024-02-07 10:18:46 +03:00
];
}
}