35 lines
884 B
PHP
35 lines
884 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\admin\Catalog;
|
|
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class UpdateEducationalInstitutionRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'position' => 'required|int|numeric|max:255',
|
|
'description' => 'string',
|
|
'slug' => [
|
|
'required',
|
|
'string',
|
|
'max:255',
|
|
"unique:educational_institutions,slug,{$this->educational_institution->id}",
|
|
],
|
|
'name' => [
|
|
'required',
|
|
'string',
|
|
'max:255',
|
|
"unique:educational_institutions,name,{$this->educational_institution->id}",
|
|
],
|
|
];
|
|
}
|
|
}
|