vendredi 6 mars 2020

How to change code upgrade from 2.x to 3.x in maatwebsite/excel

I migrated my application to laravel 6.0 .When installing the packages in the composer.json i upgraded from "maatwebsite/excel:~2.1.0" to "maatwebsite/excel": "^3.1".So now my export function does not work anymore.I tried to follow the upgrade in https://docs.laravel-excel.com/3.1 but didn't work for me.this is the old code that used to work in the old version:

Excel::create($bang,function($excel) use ($array_Data ,$bang)
        {
            $excel->setTitle($bang);
            $excel->sheet($bang,function($sheet) use($array_Data,$bang){
            $sheet->fromArray($array_Data,null,'A1',false,false);   
            });
        })->download('xlsx');


via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire