[ '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; } public function getPaymentMethodPayload() { return collect($this->validated()) ->merge([ 'company_id' => $this->header('company'), 'type' => PaymentMethod::TYPE_GENERAL, ]) ->toArray(); } }