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.
2 parents df99d0f + 9c78f4e commit c22edf7Copy full SHA for c22edf7
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