forked from aslan/applicant-site
23 lines
496 B
PHP
23 lines
496 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\admin\Catalog;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class UpdateEducationLevelRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => "required|string|max:255|unique:education_levels,name,{$this->education_level->id}",
|
|
'description' => 'string',
|
|
'slug' => 'required|string|max:255',
|
|
];
|
|
}
|
|
}
|