Export with attachments
I have a table and each record has many attachments. I want to export the table and download the attachments for each record as a zip file. Can I do that?
4 Replies
Of course, create a bulk action and build the zip as you normally would, then stream it?
How do it ?
see: https://filamentphp.com/docs/3.x/tables/actions#bulk-actions
Create one and use your standard php methods for laravel to get the data and store them etc as you want.
As I already explained in #pxlrbt-excel : You need to do the work of implementing the action yourself. No one will write the export functionality for you.