Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Broadcasting
  6. |--------------------------------------------------------------------------
  7. |
  8. | By uncommenting the Laravel Echo configuration, you may connect Filament
  9. | to any Pusher-compatible websockets server.
  10. |
  11. | This will allow your users to receive real-time notifications.
  12. |
  13. */
  14. 'broadcasting' => [
  15. // 'echo' => [
  16. // 'broadcaster' => 'pusher',
  17. // 'key' => env('VITE_PUSHER_APP_KEY'),
  18. // 'cluster' => env('VITE_PUSHER_APP_CLUSTER'),
  19. // 'wsHost' => env('VITE_PUSHER_HOST'),
  20. // 'wsPort' => env('VITE_PUSHER_PORT'),
  21. // 'wssPort' => env('VITE_PUSHER_PORT'),
  22. // 'authEndpoint' => '/api/v1/broadcasting/auth',
  23. // 'disableStats' => true,
  24. // 'encrypted' => true,
  25. // ],
  26. ],
  27. /*
  28. |--------------------------------------------------------------------------
  29. | Default Filesystem Disk
  30. |--------------------------------------------------------------------------
  31. |
  32. | This is the storage disk Filament will use to put media. You may use any
  33. | of the disks defined in the `config/filesystems.php`.
  34. |
  35. */
  36. 'default_filesystem_disk' => env('FILAMENT_FILESYSTEM_DISK', 'public'),
  37. ];