Files
api/common/Service/Format.php

15 lines
270 B
PHP
Raw Normal View History

2022-06-13 21:36:52 -04:00
<?php
namespace Incoviba\API\Common\Service;
class Format
{
public function uf(float $number)
{
return number_format($number, 2, ',', '.');
}
public function pesos(float $number)
{
return number_format($number, 0, ',', '.');
}
}