We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0772f commit fdca65eCopy full SHA for fdca65e
config/config.php
@@ -10,7 +10,9 @@
10
'defaultCurrency' => config('app.currency', 'USD'),
11
'defaultFormatter' => null,
12
'defaultSerializer' => null,
13
- 'isoCurrenciesPath' => __DIR__.'/../vendor/moneyphp/money/resources/currency.php',
+ 'isoCurrenciesPath' => is_dir(__DIR__.'/../vendor')
14
+ ? __DIR__.'/../vendor/moneyphp/money/resources/currency.php'
15
+ : __DIR__.'/../../../moneyphp/money/resources/currency.php',
16
'currencies' => [
17
'iso' => 'all',
18
'bitcoin' => 'all',
0 commit comments