applicant-site/app/Http/Requests/admin/Catalog/StoreEducationLevelRequest.php

23 lines
458 B
PHP
Raw Normal View History

2024-02-14 15:00:28 +03:00
<?php
namespace App\Http\Requests\admin\Catalog;
use Illuminate\Foundation\Http\FormRequest;
class StoreEducationLevelRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'name' => 'required|string|max:255|unique:education_levels,name',
'description' => 'string',
'slug' => 'required|string',
];
}
}