2024-02-08 15:59:44 +03:00
|
|
|
<?php
|
|
|
|
|
2024-02-12 09:19:08 +03:00
|
|
|
namespace App\Http\Requests\admin\Catalog;
|
2024-02-08 15:59:44 +03:00
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class UpdateDepartmentRequest extends FormRequest
|
|
|
|
{
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
public function rules(): array
|
|
|
|
{
|
|
|
|
return [
|
2024-02-12 09:19:08 +03:00
|
|
|
'position' => 'required|int|max:255',
|
2024-02-08 15:59:44 +03:00
|
|
|
'description' => 'string',
|
2024-02-12 09:19:08 +03:00
|
|
|
'slug' => 'string|required',
|
2024-02-08 15:59:44 +03:00
|
|
|
'faculty_id' => 'int|required',
|
|
|
|
'name' => [
|
|
|
|
'required',
|
|
|
|
'string',
|
|
|
|
'max:255',
|
2024-02-13 15:38:30 +03:00
|
|
|
"unique:departments,name,{$this->department->id}",
|
2024-02-08 15:59:44 +03:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|