芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/Http/Requests/PaymentMethodRequest.php
[ '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(); } }