style: enterprise blocky design with 0px border-radius and IDR currency

This commit is contained in:
2026-08-27 17:37:36 +07:00
parent 5effce30cb
commit 804f551972
5 changed files with 294 additions and 311 deletions
+3 -1
View File
@@ -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, ',', '.');
}
}