I want to set 4 digit fractions after decimal,
for example : Yii::$app->formatter->asCurrency($model->amount)
current output is : $ 65.58
expected output is : $ 65.5765
I have tried this link, but i m getting error as "Class 'NumberFormatter' not found".
How can I use following properties in my main config file, these properties are mentioned in Formatter class
[
NumberFormatter::MIN_FRACTION_DIGITS => 0,
NumberFormatter::MAX_FRACTION_DIGITS => 2,
]