浏览代码

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