-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Configuration file needed + possibility to set filesystem (S3) disk from config #152
Comments
Can't you just override the defined disk to make it work? |
To make override, i need to extend FilamentExcelServiceProvider and override register method (to rewite config), then disable discovery (dont-discover) of pxlrbt/filament-excel in composer json. routes changes:
}) Config with disk setting would be great with manual how to set it, i guess. |
For other users: for dedicated queues you need to publish Maatwebsite excel config and in generated file excel.php set 'remote_disk' => 's3',
|
I assume you can just override the configuration in your AppServiceProviders config()->set('filesystems.disks.filament-excel', [
'driver' => 'your_driver',
// other configuration option
]); |
much better setup this via config, then can be visible to the |
Hello! For now, the plugin has a disk that is hard-coded locally (filesystems.disks.filament-excel). It would be great if the plugin had a configuration file where you can specify which predefined in filesystems file system to work with. For example - S3.
Currently, the plugin does not work if the laravel site runs on multiple servers, or if another queue server is already in use.
The text was updated successfully, but these errors were encountered: