<?php namespace App\Helpers; class Price { public static function format(float $price): string { return number_format($price, 2, '.', ' ') . '₽'; } }