diff --git a/.env.example b/.env.example index 346b5b3b..a3ebeffe 100644 --- a/.env.example +++ b/.env.example @@ -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." diff --git a/config/maintenance.php b/config/maintenance.php new file mode 100644 index 00000000..7ac7d65a --- /dev/null +++ b/config/maintenance.php @@ -0,0 +1,6 @@ + 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!"), +]; diff --git a/resources/views/errors/503.blade.php b/resources/views/errors/503.blade.php index d8fbc8c3..b35902b8 100644 --- a/resources/views/errors/503.blade.php +++ b/resources/views/errors/503.blade.php @@ -22,8 +22,8 @@
-

We'll be back soon!

-

Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!

+

{{ config('maintenance.title') }}

+

{{ config('maintenance.message') }}

— CIEF EXCHANGE