You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
<?php
|
|
|
|
function formatNo($number)
|
|
{
|
|
return number_format($number, 0, ',', '.');
|
|
}
|
|
|
|
function formatRp($number)
|
|
{
|
|
if ($number == 0) {
|
|
return 0;
|
|
}
|
|
|
|
return 'Rp. '.formatNo($number);
|
|
}
|
|
|
|
/**
|
|
* Overide Laravel Collective link_to_route helper function.
|
|
*
|
|
* @param string $name Name of route
|
|
* @param string $title Text that displayed on view
|
|
* @param array $parameters URL Parameter
|
|
* @param array $attributes The anchor tag atributes
|
|
*/
|
|
function html_link_to_route($name, $title = null, $parameters = [], $attributes = [])
|
|
{
|
|
if (array_key_exists('icon', $attributes)) {
|
|
$title = '<i class="fa fa-'.$attributes['icon'].'"></i> '.$title;
|
|
}
|
|
|
|
return app('html')->decode(link_to_route($name, $title, $parameters, $attributes));
|
|
}
|
|
|
|
function formatSizeUnits($bytes)
|
|
{
|
|
if ($bytes >= 1073741824) {
|
|
$bytes = number_format($bytes / 1073741824, 2).' GB';
|
|
} elseif ($bytes >= 1048576) {
|
|
$bytes = number_format($bytes / 1048576, 2).' MB';
|
|
} elseif ($bytes >= 1024) {
|
|
$bytes = number_format($bytes / 1024, 2).' KB';
|
|
} elseif ($bytes > 1) {
|
|
$bytes = $bytes.' bytes';
|
|
} elseif ($bytes == 1) {
|
|
$bytes = $bytes.' byte';
|
|
} else {
|
|
$bytes = '0 bytes';
|
|
}
|
|
|
|
return $bytes;
|
|
}
|