Переглянути джерело

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, '.', ' ') . '₽';
     }
 }