style: enterprise blocky design with 0px border-radius and IDR currency
This commit is contained in:
@@ -14,6 +14,8 @@ if (!function_exists('e')) {
|
||||
if (!function_exists('money')) {
|
||||
function money(float|int|string $amount): string
|
||||
{
|
||||
return '$' . number_format((float)$amount, 2);
|
||||
// Indonesian Rupiah format: Rp 1.234.567
|
||||
// No decimal places, use dot as thousands separator
|
||||
return 'Rp ' . number_format((float)$amount, 0, ',', '.');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user