Files
nexusphp/config/filament.php

40 lines
1.1 KiB
PHP
Raw Normal View History

2022-06-27 01:39:01 +08:00
<?php
return [
/*
|--------------------------------------------------------------------------
2024-12-25 23:09:07 +08:00
| Broadcasting
2022-06-27 01:39:01 +08:00
|--------------------------------------------------------------------------
|
2024-12-25 23:09:07 +08:00
| By uncommenting the Laravel Echo configuration, you may connect Filament
| to any Pusher-compatible websockets server.
2022-06-27 01:39:01 +08:00
|
2024-12-25 23:09:07 +08:00
| This will allow your users to receive real-time notifications.
2022-06-27 01:39:01 +08:00
|
*/
2024-12-25 23:09:07 +08:00
'broadcasting' => [
2022-06-27 01:39:01 +08:00
2024-12-25 23:09:07 +08:00
// 'echo' => [
// 'broadcaster' => 'pusher',
// 'key' => env('VITE_PUSHER_APP_KEY'),
// 'cluster' => env('VITE_PUSHER_APP_CLUSTER'),
// 'forceTLS' => true,
// ],
2022-06-27 01:39:01 +08:00
],
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| This is the storage disk Filament will use to put media. You may use any
| of the disks defined in the `config/filesystems.php`.
|
*/
2024-12-25 23:09:07 +08:00
'default_filesystem_disk' => env('FILAMENT_FILESYSTEM_DISK', 'public'),
2022-06-27 01:39:01 +08:00
2024-12-25 23:09:07 +08:00
];