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 IZYIM
diff --git a/.env.example b/.env.example index ae852c04..47f16055 100644 --- a/.env.example +++ b/.env.example @@ -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." 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 f184d0c1..d8043a61 100644 --- a/resources/views/errors/503.blade.php +++ b/resources/views/errors/503.blade.php @@ -22,8 +22,8 @@
Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!
+{{ config('maintenance.message') }}
— CIEF IZYIM