Price.php 173 B

1234567891011
  1. <?php
  2. namespace App\Helpers;
  3. class Price
  4. {
  5. public static function format(float $price): string
  6. {
  7. return number_format($price, 2, '.', ' ') . '₽';
  8. }
  9. }