23 lines
549 B
PHP
23 lines
549 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\admin\Catalog;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class UpdateEducationFormRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => "required|string|max:255|unique:education_forms,name,{$this->education_form->id}",
|
|
'description' => 'string',
|
|
'slug' => "required|string|max:255|unique:education_forms,slug,{$this->education_form->id}",
|
|
];
|
|
}
|
|
}
|