user()->can($this->isMethod('post') ? 'create-departments' : 'update-departments'); } public function rules(): array { return [ 'code' => [ 'required', 'string', 'max:10', Rule::unique('departments')->ignore($this->route('department')), ], 'name' => ['required', 'string', 'max:100'], 'degree_level' => ['nullable', 'string', Rule::in(['D3', 'D4', 'S1', 'S2', 'S3'])], ]; } }