芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/app/Services/ExchangeApi/CurrencyConverterApiService.php
fromCurrencyCode . '_' . $this->toCurrencyCode . '&compact=ultra&apiKey=' . settings('currency_converter_api_key'); } /** * Fetch the exchange rate * * @return mixed */ public function getCurrencyRate() { $response = \Illuminate\Support\Facades\Http::get($this->generatedUrl()); if ($response->status() == 200) { $variable = $this->fromCurrencyCode . "_" . $this->toCurrencyCode; return json_decode($response)->$variable; } } }