E-Invoice - Updated maintenance message

This commit is contained in:
Dillon Ngo
2025-06-27 12:25:09 +08:00
parent df9468d568
commit 273f81f9a8
3 changed files with 12 additions and 2 deletions
+4
View File
@@ -66,3 +66,7 @@ COMMANDS_V2_ENABLED=false
STORAGE_FEE_LAUNCH_DATE="2023-12-11 00:00:00"
SST_START_DATE="2024-04-01 00:00:00"
E_INVOICE_START_DATE="2025-07-01 00:00:00"
MAINTENANCE_MESSAGE_TITLE="We'll be back online on 00:00 1/7/2025"
MAINTENANCE_MESSAGE="Sorry for the inconvenience but we're performing some maintenance at the moment."
+6
View File
@@ -0,0 +1,6 @@
<?php
return [
'title' => env('MAINTENANCE_MESSAGE_TITLE', "We'll be back soon!"),
'message' => env('MAINTENANCE_MESSAGE', "Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!"),
];
+2 -2
View File
@@ -22,8 +22,8 @@
</head>
<body>
<div class="content">
<h1>We'll be back soon!</h1>
<p>Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!</p>
<h1>{{ config('maintenance.title') }}</h1>
<p>{{ config('maintenance.message') }}</p>
<p>&mdash; CIEF IZYIM</p>
</div>
</body>