瀏覽代碼

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