2024-02-07 10:18:46 +03:00
|
|
|
<?php
|
|
|
|
|
2024-02-12 14:55:17 +03:00
|
|
|
namespace App\Http\Requests\admin\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
|
|
|
|
{
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules(): array
|
|
|
|
{
|
|
|
|
return [
|
2024-02-14 16:41:19 +03:00
|
|
|
'position' => 'required|int|numeric|max:255',
|
2024-02-07 10:18:46 +03:00
|
|
|
'description' => 'string',
|
2024-02-15 14:46:35 +03:00
|
|
|
'slug' => [
|
|
|
|
'required',
|
|
|
|
'string',
|
|
|
|
'max:255',
|
|
|
|
"unique:educational_institutions,slug,{$this->educational_institution->id}",
|
|
|
|
],
|
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
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|