prodV1 #2

Open
RomanGolienko wants to merge 309 commits from prodV1 into main
2 changed files with 2 additions and 3 deletions
Showing only changes of commit c6742d7d5e - Show all commits

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}",
], ],
]; ];
} }