public static function numberTwoDecimals($number, $decimals = 2) | public static function numberTwoDecimals($number, $decimals = 2) | ||||
{ | { | ||||
return number_format((($number * 100)) / 100, $decimals, '.', ' '); | |||||
return number_format((($number * 100)) / 100, $decimals, '.', ''); | |||||
} | } | ||||
} | } |