1. Go to this page and download the library: Download notchafrica/laravel-toolkit 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/ */
notchafrica / laravel-toolkit example snippets
return [
"currency" => [
'default' => 'USD',
/*
|--------------------------------------------------------------------------
| API Key for FOREXAPI
|--------------------------------------------------------------------------
|
| Only |--------------------------------------------------------------------------
|
| Here you may specify the default storage driver that should be used
| by the framework.
|
| Supported: "database", "filesystem", "Model"
|
*/
'driver' => 'filesystem',
/*
|--------------------------------------------------------------------------
| Default Storage Driver
|--------------------------------------------------------------------------
|
| Here you may specify the default cache driver that should be used
| by the framework.
|
| Supported: all cache drivers supported by Laravel
|
*/
'cache_driver' => null,
/*
|--------------------------------------------------------------------------
| Storage Specific Configuration
|--------------------------------------------------------------------------
|
| Here you may configure as many storage drivers as you wish.
|
*/
'drivers' => [
'database' => [
'class' => \Notch\Toolkit\Currency\Drivers\Database::class,
'connection' => null,
'table' => 'currencies',
],
'filesystem' => [
'class' => \Notch\Toolkit\Currency\Drivers\Filesystem::class,
'disk' => "local",
'path' => 'currencies.json',
],
'model' => [
'table' => 'currencies',
'class' => \Notch\Toolkit\Currency\Models\Currency::class
],
],
/*
|--------------------------------------------------------------------------
| Currency Formatter
|--------------------------------------------------------------------------
|
| Here you may configure a custom formatting of currencies. The reason for
| this is to help further internationalize the formatting past the basic
| format column in the table. When set to `null` the package will use the
| format from storage.
|
|
*/
'formatter' => null,
/*
|--------------------------------------------------------------------------
| Currency Formatter Specific Configuration
|--------------------------------------------------------------------------
|
| Here you may configure as many currency formatters as you wish.
|
*/
'formatters' => [
'php_intl' => [
'class' => \Notch\Toolkit\Currency\Formatters\PHPIntl::class,
],
],
]
];
echo currency(12.00); // Will format the amount using the user selected currency
echo currency(12.00, 'USD', 'EUR'); // Will format the amount from the default currency to EUR