PHP code example of norbybaru / exchange-rate

1. Go to this page and download the library: Download norbybaru/exchange-rate 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/ */

    

norbybaru / exchange-rate example snippets


$ composer install norbybaru/exchange-rate

$ php artisan vendor:publish --provider="NorbyBaru\ExchangeRate\ExchangeRateServiceProvider"

$ php artisan migrate

$ php artisan rate:update


use NorbyBaru\ExchangeRate\Facades\Exchange;

$rate = Exchange::rate("USD");




use NorbyBaru\ExchangeRate\Facades\Exchange;

$money = Exchange::convert(5000, 'USD', 'ZAR');