section basic

This commit is contained in:
xiaomlove
2022-10-27 20:21:54 +08:00
parent 0053d14183
commit ce5d99c16a
92 changed files with 3188 additions and 1367 deletions
+51
View File
@@ -0,0 +1,51 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Dark mode
|--------------------------------------------------------------------------
|
| By enabling this setting, your notifications will be ready for Tailwind's
| Dark Mode feature.
|
| https://tailwindcss.com/docs/dark-mode
|
*/
'dark_mode' => false,
/*
|--------------------------------------------------------------------------
| Database notifications
|--------------------------------------------------------------------------
|
| By enabling this feature, your users are able to open a slide-over within
| the app to view their database notifications.
|
*/
'database' => [
'enabled' => false,
'trigger' => null,
'polling_interval' => '30s',
],
/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
|
| This is the configuration for the general layout of notifications.
|
*/
'layout' => [
'alignment' => [
'horizontal' => 'right',
'vertical' => 'top',
],
],
];