applicant-site/app/Http/Requests/admin/Catalog/StoreEducationalInstitution...

24 lines
524 B
PHP
Raw Normal View History

2024-02-07 10:18:46 +03:00
<?php
namespace App\Http\Requests\admin\Catalog;
2024-02-07 10:18:46 +03:00
use Illuminate\Foundation\Http\FormRequest;
class StoreEducationalInstitutionRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
2024-02-13 15:38:30 +03:00
'position' => 'required|int|max:255',
2024-02-07 10:18:46 +03:00
'name' => 'required|string|max:255|unique:educational_institutions,name',
'description' => 'string',
'slug' => 'required|string',
2024-02-07 10:18:46 +03:00
];
}
}