Bhargav Chaniyara
Bhargav Chaniyara

Reputation: 44

Laravel excel file edit using laravel excel

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

Answers (1)

libao zhou
libao zhou

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

Related Questions