Augustogany
Export data
Good evening, I have the following code to export the documentation to Excel.
https://filamentphp.com/docs/3.x/actions/prebuilt-actions/export
It downloads it to the pulic folder. but I don't want it to store but rather download normally in the download folder.
Export action - Actions - Filament
ExportBulkAction::make()
->exporter(OperationExporter::class)
->formats([
ExportFormat::Xlsx
])
->maxRows(1000)
2 replies