Implemented repository mapper, and venta show
This commit is contained in:
@ -17,8 +17,16 @@ class Format
|
||||
return $formatter->format($date);
|
||||
|
||||
}
|
||||
public function number(float|string $number, int $decimal_places = 0): string
|
||||
{
|
||||
return number_format($number, $decimal_places, ',', '.');
|
||||
}
|
||||
public function pesos(string $valor): string
|
||||
{
|
||||
return '$' . number_format($valor, 0, ',', '.');
|
||||
return '$ ' . $this->number($valor);
|
||||
}
|
||||
public function ufs(string $valor): string
|
||||
{
|
||||
return $this->number($valor, 2) . ' UF';
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user