Excel Import Issue
Hi,
I am trying to add additional fields to table header action beside just filupload.
So goal is to add additional text input next to file upload.
But when i upload excel i am having issue with getting that file in $data from ->action().. Is there any way for me to get that temp file to be read with my custom Excel import?
2 Replies
storeFiles(false) as per: https://filamentphp.com/docs/3.x/forms/fields/file-upload#preventing-files-from-being-stored-permanently but you need to handle the save method to begin the upload. You could do this in a wizard, which is how I did it a year or two back, then in the wizard step 2, we read the data from the file
In theory you should be able to see how the Filament Import Action works too and just follow that process