You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably it is me that I didn't sort out how to do, but it seems that direct support for laravel filesystem is missing.
For export/import should be possible to use directly configured storage
The text was updated successfully, but these errors were encountered:
@bobonov I am also here finding a way to store the sheets, as I am running this in queues, we can only set the laravel storage path to store the files locally but what about the other storge drivers like s3.
I dont know about S3, but wouldn't it work like this?
(new FastExcel)->configureCsv(';', '"', 'utf-8')->import( \Storage::disk('imports')->path($fileName), function ($line) {
...
});
This is a shortened Version of what i use in a laravel project, where i have a Disk defined for the imports, where the Files get uploaded into so i am only searching the filename inside this disk.
Probably it is me that I didn't sort out how to do, but it seems that direct support for laravel filesystem is missing.
For export/import should be possible to use directly configured storage
The text was updated successfully, but these errors were encountered: