소스 검색

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