Wallogit.com
2017 © Pedro Peláez
Currency api of Central Bank Of Azerbaijan
, (*1)
Laravel api for getting Currency rates of Central Bank of Azerbaijan You can get all currency information or search by Currency Code and get One, (*2)
You can clone project with git: ``` bash composer require seymur/currency:dev-master, (*3)
Now add the service provider in config/app.php file:
'providers' => [ // ... Seymur\Currency\CurrencyServiceProvider::class, ],, (*4)
after this add alias in config/app.php file:
'aliases' => [ //... 'Currency' => Seymur\Currency\Facades\Currency::class, ],, (*5)
use command:
composer dump-autoload, (*6)
now u can use api like this
use Seymur\Currency\Facades\Currency; //..., (*7)
Currency::get();
or you can use
\Seymur\Currency\Facades\Currency::get(), (*8)
for searching currency rate use currency code example:
Currency::search("USD");
```, (*9)