From 804f551972dffddcfe5548934884ad0f573958ff Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Thu, 27 Aug 2026 17:37:36 +0700 Subject: [PATCH] style: enterprise blocky design with 0px border-radius and IDR currency --- app/Core/Helpers.php | 4 +- app/Views/orders/show.php | 2 +- app/Views/sessions/index.php | 4 +- app/Views/sessions/show.php | 12 +- public/assets/css/style.css | 583 +++++++++++++++++------------------ 5 files changed, 294 insertions(+), 311 deletions(-) diff --git a/app/Core/Helpers.php b/app/Core/Helpers.php index 3593160..fae1e2c 100644 --- a/app/Core/Helpers.php +++ b/app/Core/Helpers.php @@ -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, ',', '.'); } } diff --git a/app/Views/orders/show.php b/app/Views/orders/show.php index 56d5609..06283c5 100644 --- a/app/Views/orders/show.php +++ b/app/Views/orders/show.php @@ -99,7 +99,7 @@ -
+
Order Notes:
diff --git a/app/Views/sessions/index.php b/app/Views/sessions/index.php index c09c4f7..afe9896 100644 --- a/app/Views/sessions/index.php +++ b/app/Views/sessions/index.php @@ -49,11 +49,11 @@
👤 Hosted by: - @ + @
-
+
📢
diff --git a/app/Views/sessions/show.php b/app/Views/sessions/show.php index 118b72d..87914e8 100644 --- a/app/Views/sessions/show.php +++ b/app/Views/sessions/show.php @@ -106,7 +106,7 @@ -
+

No menu listed yet for today.

@@ -142,14 +142,14 @@