[ 'required', Rule::unique('payment_methods') ->where('company_id', $this->header('company')), ], ]; if ($this->getMethod() == 'PUT') { $data['name'] = [ 'required', Rule::unique('payment_methods') ->ignore($this->route('payment_method'), 'id') ->where('company_id', $this->header('company')), ]; } return $data; } }