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

1 month ago
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Laravel money
  6. |--------------------------------------------------------------------------
  7. */
  8. 'locale' => config('app.locale', 'en_US'),
  9. 'defaultCurrency' => config('app.currency', 'USD'),
  10. 'defaultFormatter' => null,
  11. 'isoCurrenciesPath' => __DIR__.'/../vendor/moneyphp/money/resources/currency.php',
  12. 'currencies' => [
  13. 'iso' => 'all',
  14. 'bitcoin' => 'all',
  15. 'custom' => [
  16. // 'MY1' => 2,
  17. // 'MY2' => 3
  18. ],
  19. ],
  20. ];