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 cbc66d1 commit 9c78f4eCopy full SHA for 9c78f4e
src/Provider.php
@@ -22,7 +22,8 @@ public function boot(): void
22
], 'money');
23
24
Money::setLocale($this->app->make('translator')->getLocale());
25
- Currency::setCurrencies($this->app->make('config')->get('money'));
+ $currencies = $this->app->make('config')->get('money');
26
+ Currency::setCurrencies($currencies ?? []);
27
28
$this->registerBladeDirectives();
29
$this->registerBladeComponents();
0 commit comments