E-Invoice - Updated maintenance message

This commit is contained in:
Dillon Ngo
2025-06-27 12:26:23 +08:00
parent da463f4511
commit 82c041316a
3 changed files with 11 additions and 2 deletions
+3
View File
@@ -76,4 +76,7 @@ COMMANDS_V2_ENABLED=false
SENDING_EMAIL_ENABLED=false
SENDING_EMAIL_WELCOME_VOUCHER_ENABLED=false
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 EXCHANGE</p>
</div>
</body>