Is there a way to enable automatic download or export of loaded table items without sending addition
How can I achieve automatic download or export of loaded table items in Filament without having to wait for a background job to complete or manually click the download button in the notification once the export is ready?
2 Replies
Change connection in Exporter class to "sync"
public function getJobConnection(): ?string
{
return 'sync';
}
thanks , lemme try it