[ 'required', 'string', Rule::unique('roles')->where('scope', $this->header('company')) ], 'abilities' => [ 'required' ], 'abilities.*' => [ 'required' ] ]; if ($this->getMethod() == 'PUT') { $rules['name'] = [ 'required', 'string', Rule::unique('roles') ->ignore($this->route('role')->id, 'id') ->where('scope', $this->header('company')) ]; } return $rules; } public function getRolePayload() { return collect($this->except('abilities')) ->merge([ 'scope' => $this->header('company'), ]) ->toArray(); } }