From 7f94570edd540179ca0addfe4527673742eab62e Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 23 Jan 2020 22:30:08 +0100 Subject: [PATCH] Publish config/timezone --- config/timezone.php | 62 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 config/timezone.php diff --git a/config/timezone.php b/config/timezone.php new file mode 100644 index 000000000..bf6e78ec3 --- /dev/null +++ b/config/timezone.php @@ -0,0 +1,62 @@ + 'standard', + + /* + |-------------------------------------------------------------------------- + | Overwrite Existing Timezone + |-------------------------------------------------------------------------- + | + | Here you may configure if you would like to overwrite existing + | timezones if they have been already set in the database. + | options [true, false] + | + */ + + 'overwrite' => true, + + /* + |-------------------------------------------------------------------------- + | Overwrite Default Format + |-------------------------------------------------------------------------- + | + | Here you may configure if you would like to overwrite the + | default format. + | + */ + + 'format' => 'jS F Y g:i:a', + + /* + |-------------------------------------------------------------------------- + | Lookup Array + |-------------------------------------------------------------------------- + | + | Here you may configure the lookup array whom it will be used to fetch the user remote address. + | When a key is found inside the lookup array that key it will be used. + | + */ + + 'lookup' => [ + 'server' => [ + 'REMOTE_ADDR', + ], + 'headers' => [ + + ], + ], + +];