You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
606 B
21 lines
606 B
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Laravel money
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'locale' => config('app.locale', 'en_US'),
|
|
'defaultCurrency' => config('app.currency', 'USD'),
|
|
'defaultFormatter' => null,
|
|
'isoCurrenciesPath' => __DIR__.'/../vendor/moneyphp/money/resources/currency.php',
|
|
'currencies' => [
|
|
'iso' => 'all',
|
|
'bitcoin' => 'all',
|
|
'custom' => [
|
|
// 'MY1' => 2,
|
|
// 'MY2' => 3
|
|
],
|
|
],
|
|
];
|