Explorar el Código

Added nbsp to price format

Alexander Musikhin hace 10 meses
padre
commit
60955e8c39
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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, '.', ' ') . '₽';
     }
 }