2024-02-10 11:23:38 +03:00
|
|
|
<?php
|
|
|
|
|
2024-02-12 10:58:48 +03:00
|
|
|
namespace App\Http\Requests\admin\Catalog;
|
2024-02-10 11:23:38 +03:00
|
|
|
|
|
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
|
|
|
|
class UpdateDirectionRequest 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-10 11:23:38 +03:00
|
|
|
'description' => 'string',
|
|
|
|
'department_id' => 'int|required',
|
2024-02-12 10:58:48 +03:00
|
|
|
'slug' => 'required|string',
|
2024-02-10 11:23:38 +03:00
|
|
|
'name' => [
|
|
|
|
'required',
|
|
|
|
'string',
|
|
|
|
'max:255',
|
2024-02-13 15:38:30 +03:00
|
|
|
"unique:directions,name,{$this->direction->id}",
|
2024-02-10 11:23:38 +03:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|