PHP code example of mkraha / laravel-currency-converter

1. Go to this page and download the library: Download mkraha/laravel-currency-converter 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/ */

    

mkraha / laravel-currency-converter example snippets


'providers' => [

    \Raha\Currency\CurrencyServiceProvider::class,

]

'aliases' => [

    'Currency' => \Raha\Currency\Facades\Currency::class,

];

protected $middleware = [

    \Raha\Currency\Middleware\CurrencyMiddleware::class,

]
bash
php artisan vendor:publish --provider="Raha\Currency\CurrencyServiceProvider" --tag=config
bash
php artisan vendor:publish --provider="Raha\Currency\CurrencyServiceProvider" --tag=migrations
bash
$ php artisan migrate