19 lines
460 B
PHP
19 lines
460 B
PHP
<?php
|
|
|
|
if (!function_exists('money')) {
|
|
/**
|
|
* Format a given amount to the given currency
|
|
*
|
|
* @param $amount
|
|
* @param \App\Models\Currency $currency
|
|
* @return string
|
|
*/
|
|
function money($amount, \App\Models\Currency $currency)
|
|
{
|
|
return $currency->symbol_left . number_format($amount, $currency->decimal_place, $currency->decimal_point,
|
|
$currency->thousand_point) . $currency->symbol_right;
|
|
}
|
|
}
|
|
|
|
|