Added the ability to save user settings.

This commit is contained in:
2023-07-10 21:42:55 +06:00
parent b1c9dac3cc
commit 907bac5586
17 changed files with 278 additions and 8 deletions

View File

@@ -70,6 +70,7 @@ return [
*/
'timezone' => 'UTC',
'user_timezone' => env('APP_DEFAULT_USER_TIMEZONE', 'UTC'),
/*
|--------------------------------------------------------------------------
@@ -82,7 +83,7 @@ return [
|
*/
'locale' => 'ru',
'locale' => env('APP_DEFAULT_LOCALE', 'ru'),
/*
|--------------------------------------------------------------------------
@@ -209,7 +210,7 @@ return [
*/
'aliases' => Facade::defaultAliases()->merge([
// 'ExampleClass' => App\Example\ExampleClass::class,
'Helpers' => \App\Helpers\Helpers::class,
])->toArray(),
];