The default currency for your application can be set with the default_currency configuration node. This defaults to "USD" and can be any valid currency code accepted by the Money library.
# config/packages/babdev_money.yaml
babdev_money:
default_currency: EUR
<?php // config/packages/babdev_money.php
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
return App::config([
'babdev_money' => [
'default_currency' => 'EUR',
],
]);
How can I help you explore Laravel packages today?