fix: respect TZ env var as fallback for timezone config (#2753)

This commit is contained in:
Abdirahman Mohamed
2026-04-19 18:59:32 +01:00
committed by GitHub
parent 144be5c0f5
commit 82831abb30
+2 -2
View File
@@ -67,7 +67,7 @@ return [
| |
*/ */
'timezone' => env('APP_TIMEZONE', 'UTC'), 'timezone' => env('APP_TIMEZONE') ?? env('TZ', 'UTC'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@@ -151,7 +151,7 @@ return [
'datetime_format' => env('DATETIME_FORMAT', 'M. j, Y g:ia'), 'datetime_format' => env('DATETIME_FORMAT', 'M. j, Y g:ia'),
'display_timezone' => env('DISPLAY_TIMEZONE', 'UTC'), 'display_timezone' => env('DISPLAY_TIMEZONE') ?? env('TZ', 'UTC'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------