Auth, Login, Home, Venta->Listados->Precios
This commit is contained in:
24
app/src/Service/Format.php
Normal file
24
app/src/Service/Format.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
namespace Incoviba\Service;
|
||||
|
||||
use DateTimeImmutable;
|
||||
use IntlDateFormatter;
|
||||
|
||||
class Format
|
||||
{
|
||||
public function localDate(string $valor, string $format, bool $print = false): string
|
||||
{
|
||||
$date = new DateTimeImmutable($valor);
|
||||
$formatter = new IntlDateFormatter('es_ES');
|
||||
if ($format == null) {
|
||||
$format = 'DD [de] MMMM [de] YYYY';
|
||||
}
|
||||
$formatter->setPattern($format);
|
||||
return $formatter->format($date);
|
||||
|
||||
}
|
||||
public function pesos(string $valor): string
|
||||
{
|
||||
return '$' . number_format($valor, 0, ',', '.');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user