芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/invoicer.pulsehost.co.uk/app/Http/Requests/ExchangeRateLogRequest.php
[ 'required', ], 'currency_id' => [ 'required', ], ]; } public function getExchangeRateLogPayload() { $companyCurrency = CompanySetting::getSetting( 'currency', $this->header('company') ); if ($this->currency_id !== $companyCurrency) { return collect($this->validated()) ->merge([ 'company_id' => $this->header('company'), 'base_currency_id' => $companyCurrency, ]) ->toArray(); } } }