Pārlūkot izejas kodu

Added nbsp to price format

Alexander Musikhin 10 mēneši atpakaļ
vecāks
revīzija
60955e8c39
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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, '.', ' ') . '₽';
     }
 }