Skip to content

Commit

Permalink
Merge pull request #491 from shevelev-anatoliy/update-configuration-page
Browse files Browse the repository at this point in the history
feat(view): update "getting-started/configuration" page
  • Loading branch information
DissNik authored Jun 7, 2024
2 parents 6a11d87 + 8398116 commit bab8339
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
21 changes: 21 additions & 0 deletions resources/views/pages/en/configuration.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,32 @@
'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]

# 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]
Expand Down Expand Up @@ -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]
Expand Down
21 changes: 21 additions & 0 deletions resources/views/pages/ru/configuration.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,32 @@
'use_migrations' => true, // [tl! focus]
# Вкл/Выкл уведомления
'use_notifications' => true, // [tl! focus]
# Вкл/Выкл переключатель светлой/тёмной темы
'use_theme_switcher' => true, // [tl! focus]

# Class для рендеринга основного шаблона страницы
'layout' => MoonShineLayout::class, // [tl! focus]

# 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]
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit bab8339

Please sign in to comment.