PHP code example of kantorge / laravel-currency-exchange-rates

1. Go to this page and download the library: Download kantorge/laravel-currency-exchange-rates library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kantorge / laravel-currency-exchange-rates example snippets


use Kantorge\CurrencyExchangeRates\Facades\CurrencyExchangeRates;
$currencyApi = CurrencyExchangeRates::create();

// [ 'EUR', 'USD', 'GBP', ...]
$currencyApi->getCurrencies();

// [
//     '2021-01-01' => [
//         'EUR' => 1,
//         'USD' => 1.23,
//     ],
// ]
$currencyApi->getTimeSeries(
    new Carbon('2021-01-01'),
    new Carbon('2021-01-01'),
    'HUF',
    ['EUR', 'USD']
);
bash
php artisan vendor:publish --tag="laravel-currency-exchange-rates-config"