I have problem, on localhost show price is:
CZK 1,675
On server show price is:
CZK1,675.00
Without
and in addition, decimal numbers.
How do I set a price display with a space (
)? And without decimal places?
Code:
$price = Number::currency(1675, 'CZK', [
'places' => 0,
]);
Where is problem?