Преглед изворни кода

Added nbsp to price format

Alexander Musikhin пре 10 месеци
родитељ
комит
60955e8c39
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      app/Helpers/Price.php

+ 1 - 1
app/Helpers/Price.php

@@ -6,6 +6,6 @@ class Price
 {
     public static function format(float $price): string
     {
-        return number_format($price, 2, '.', ' ') . '₽';
+        return number_format($price, 2, '.', ' ') . '₽';
     }
 }