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