芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/Http/Requests/UnitRequest.php
[ 'required', Rule::unique('units') ->where('company_id', $this->header('company')), ], ]; if ($this->getMethod() == 'PUT') { $data['name'] = [ 'required', Rule::unique('units') ->ignore($this->route('unit'), 'id') ->where('company_id', $this->header('company')), ]; } return $data; } public function getUnitPayload() { return collect($this->validated()) ->merge([ 'company_id' => $this->header('company'), ]) ->toArray(); } }