From 839811647b2ebe45746fca7faf6f948b6ba50119 Mon Sep 17 00:00:00 2001 From: Shevelev Anatolii Date: Fri, 7 Jun 2024 17:30:51 +0700 Subject: [PATCH] feat(view): update "getting-started/configuration" page --- .../views/pages/en/configuration.blade.php | 21 +++++++++++++++++++ .../views/pages/ru/configuration.blade.php | 21 +++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/resources/views/pages/en/configuration.blade.php b/resources/views/pages/en/configuration.blade.php index 564f6f55..e40dcad4 100644 --- a/resources/views/pages/en/configuration.blade.php +++ b/resources/views/pages/en/configuration.blade.php @@ -53,6 +53,8 @@ 'use_migrations' => true, // [tl! focus] # Notification On/Off 'use_notifications' => true, // [tl! focus] + # On/Off light/dark theme switcher + 'use_theme_switcher' => true, // [tl! focus] # Class for rendering the main page template 'layout' => MoonShineLayout::class, // [tl! focus] @@ -60,8 +62,23 @@ # Default Filesystem Disk 'disk' => 'public', // [tl! focus] + 'disk_options' => [], // [tl! focus] + 'cache' => 'file', // [tl! focus] + 'assets' => [ // [tl! focus:start] + 'js' => [ + 'script_attributes' => [ + 'defer', + ] + ], + 'css' => [ + 'link_attributes' => [ + 'rel' => 'stylesheet', + ] + ] + ], // [tl! focus:end] + 'forms' => [ // [tl! focus] # form of authentication 'login' => LoginForm::class // [tl! focus] @@ -111,6 +128,10 @@ 'ru', ], // [tl! focus:end] + 'global_search' => [ // [tl! focus:start] + // User::class + ], // [tl! focus:end] + 'tinymce' => [ // [tl! focus] # File Manager Root, details in the Fields section 'file_manager' => false, // [tl! focus] diff --git a/resources/views/pages/ru/configuration.blade.php b/resources/views/pages/ru/configuration.blade.php index 8c707678..e3da88f3 100644 --- a/resources/views/pages/ru/configuration.blade.php +++ b/resources/views/pages/ru/configuration.blade.php @@ -53,6 +53,8 @@ 'use_migrations' => true, // [tl! focus] # Вкл/Выкл уведомления 'use_notifications' => true, // [tl! focus] + # Вкл/Выкл переключатель светлой/тёмной темы + 'use_theme_switcher' => true, // [tl! focus] # Class для рендеринга основного шаблона страницы 'layout' => MoonShineLayout::class, // [tl! focus] @@ -60,8 +62,23 @@ # Filesystem Disk по умолчанию 'disk' => 'public', // [tl! focus] + 'disk_options' => [], // [tl! focus] + 'cache' => 'file', // [tl! focus] + 'assets' => [ // [tl! focus:start] + 'js' => [ + 'script_attributes' => [ + 'defer', + ] + ], + 'css' => [ + 'link_attributes' => [ + 'rel' => 'stylesheet', + ] + ] + ], // [tl! focus:end] + 'forms' => [ // [tl! focus] # форма аутентификации 'login' => LoginForm::class // [tl! focus] @@ -111,6 +128,10 @@ 'ru', ], // [tl! focus:end] + 'global_search' => [ // [tl! focus:start] + // User::class + ], // [tl! focus:end] + 'tinymce' => [ // [tl! focus] # Роут файлового менеджера, подробности в разделе Поля 'file_manager' => false, // [tl! focus]