delete unique to department in requests

This commit is contained in:
aslan 2024-03-14 11:00:35 +03:00
parent 03b8fa831d
commit c6742d7d5e
2 changed files with 2 additions and 3 deletions

View File

@ -16,7 +16,7 @@ class StoreDepartmentRequest extends FormRequest
{ {
return [ return [
'position' => 'required|int|numeric|max:255', 'position' => 'required|int|numeric|max:255',
'name' => 'required|string|max:255|unique:departments,name', 'name' => 'required|string|max:255',
'description' => 'nullable|string', 'description' => 'nullable|string',
'slug' => 'nullable|string|max:255|unique:departments,slug', 'slug' => 'nullable|string|max:255|unique:departments,slug',
'faculty_id' => 'required|numeric|int|max:1000', 'faculty_id' => 'required|numeric|int|max:1000',

View File

@ -25,8 +25,7 @@ class UpdateDepartmentRequest extends FormRequest
'name' => [ 'name' => [
'required', 'required',
'string', 'string',
'max:255', 'max:255'
"unique:departments,name,{$this->department->id}",
], ],
]; ];
} }