Reputation: 63
I need to set currency format as default in config. Now when I change language in frontend the currency is changing too. How can I set it by default
Upvotes: 4
Views: 2489
Reputation: 133370
In Config/main.php eg:
'component' => [
..........
'formatter' => [
'class' => 'yii\i18n\Formatter',
'dateFormat' => 'dd.MM.yyyy',
'decimalSeparator' => ',',
'thousandSeparator' => ' ',
'currencyCode' => 'EUR',
'nullDisplay' => '',
],
Upvotes: 6