Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

notifications.php 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Dark mode
  6. |--------------------------------------------------------------------------
  7. |
  8. | By enabling this setting, your notifications will be ready for Tailwind's
  9. | Dark Mode feature.
  10. |
  11. | https://tailwindcss.com/docs/dark-mode
  12. |
  13. */
  14. 'dark_mode' => false,
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Database notifications
  18. |--------------------------------------------------------------------------
  19. |
  20. | By enabling this feature, your users are able to open a slide-over within
  21. | the app to view their database notifications.
  22. |
  23. */
  24. 'database' => [
  25. 'enabled' => false,
  26. 'trigger' => null,
  27. 'polling_interval' => '30s',
  28. ],
  29. /*
  30. |--------------------------------------------------------------------------
  31. | Layout
  32. |--------------------------------------------------------------------------
  33. |
  34. | This is the configuration for the general layout of notifications.
  35. |
  36. */
  37. 'layout' => [
  38. 'alignment' => [
  39. 'horizontal' => 'right',
  40. 'vertical' => 'top',
  41. ],
  42. ],
  43. ];