Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Components
  6. |--------------------------------------------------------------------------
  7. |
  8. | These are the settings that Filament will use to control the appearance
  9. | and behaviour of form components.
  10. |
  11. */
  12. 'components' => [
  13. 'actions' => [
  14. 'modal' => [
  15. 'actions' => [
  16. 'alignment' => 'left',
  17. ],
  18. ],
  19. ],
  20. 'date_time_picker' => [
  21. 'first_day_of_week' => 1, // 0 to 7 are accepted values, with Monday as 1 and Sunday as 7 or 0.
  22. 'display_formats' => [
  23. 'date' => 'M j, Y',
  24. 'date_time' => 'M j, Y H:i',
  25. 'date_time_with_seconds' => 'M j, Y H:i:s',
  26. 'time' => 'H:i',
  27. 'time_with_seconds' => 'H:i:s',
  28. ],
  29. ],
  30. ],
  31. /*
  32. |--------------------------------------------------------------------------
  33. | Default Filesystem Disk
  34. |--------------------------------------------------------------------------
  35. |
  36. | This is the storage disk Filament will use to put media. You may use any
  37. | of the disks defined in the `config/filesystems.php`.
  38. |
  39. */
  40. 'default_filesystem_disk' => env('FORMS_FILESYSTEM_DRIVER', 'public'),
  41. /*
  42. |--------------------------------------------------------------------------
  43. | Dark mode
  44. |--------------------------------------------------------------------------
  45. |
  46. | By enabling this setting, your forms will be ready for Tailwind's Dark
  47. | Mode feature.
  48. |
  49. | https://tailwindcss.com/docs/dark-mode
  50. |
  51. */
  52. 'dark_mode' => false,
  53. ];