2024-02-07 16:30:49 +03:00
|
|
|
<?php
|
|
|
|
|
2024-02-12 12:15:46 +03:00
|
|
|
namespace App\Http\Requests\admin\Catalog;
|
2024-02-07 16:30:49 +03:00
|
|
|
|
|
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class StoreFacultyRequest 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-13 15:38:30 +03:00
|
|
|
'name' => 'required|string|max:255|unique:faculties,name',
|
2024-02-07 16:30:49 +03:00
|
|
|
'description' => 'string',
|
2024-02-14 16:41:19 +03:00
|
|
|
'slug' => 'required|string|max:255',
|
|
|
|
'educational_institution_id' => 'required|int|numeric|max:1000'
|
2024-02-07 16:30:49 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|