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

37 lines
869 B
PHP
Raw Normal View History

2024-02-07 10:18:46 +03:00
<?php
2024-02-10 15:45:23 +03:00
namespace App\Http\Requests\Catalog;
2024-02-07 10:18:46 +03:00
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;
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
];
}
}