|
@@ -70,6 +70,12 @@ if(!function_exists('friendly_month')) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+if(!function_exists('friendly_money')){
|
|
|
+ function friendly_money($value){
|
|
|
+ return number_format((float)$value, 2, '.', '');
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
if(!function_exists('time_in_hrminsec')) {
|
|
|
function time_in_hrminsec($value, $default = '-') {
|
|
|
if(!$value || empty($value)) return $default;
|