Library to see the value of a currency in comparison with another, it accepts the change of all the currencies in the world.
Add joan-ramirez/currency
as a require dependency in your composer.json
file:
composer require joan-ramirez/currency
Create a currency instance
use JoanRamirez/Currency/Currency;
$currency = new Currency();
Get USD value converted to EUR change()->get()
methods
$currency->change('USD', 'EUR')->get();
Get the value of $100 USD converted to EUR with the amount()
method
$currency->change('USD', 'EUR')->amount(100)->get();
Currency is licensed under the MIT license.