芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/app/Services/ExchangeApi/ExchangeRateApiService.php
fromCurrencyCode .'/' . $this->toCurrencyCode; } /** * Fetch the exchange rate * * @return mixed */ public function getCurrencyRate() { $response = \Illuminate\Support\Facades\Http::get($this->generatedUrl()); $responseData = json_decode($response->getBody()); if ($response->status() == 200 && $responseData->result == 'success') { return $responseData->conversion_rate; } return $responseData->result == 'error' ? 'error' : ''; } }