In order to get the default currency from the config file or override this value from the code.
// config/money.php
return [
'default_currency' => 'RUB',
// ...
];
use PostScripton\Money\Currency;
Currency::getDefault(); // RUB currency object
Currency::setDefault(currency('USD'));
Currency::getDefault(); // USD currency object
📌 Back to the contents.