Reputation: 44
I'm using maatwebsite/laravel-excel for excel import and export in my whole project but my current version of this package is 3.1. I need to edit the excel file this could be done by
Excel::load('file.csv', function($file) {
// modify stuff
})->export('xlsx');
but this is only supported in version 2.1 and this is removed in 3.1 need to urgently do that how can i do that anyone have idea than please suggest me.
Upvotes: 1
Views: 1907
Reputation: 23
You may do this by using the make:export command. see the quick start https://docs.laravel-excel.com/3.1/exports/
Upvotes: 1