Reputation: 310
I have a form for uploading Excel, But While uploading Excel to the system it's showing Error like this
Undefined array key "Sheet 1"
The package is used upload excel is laravel Maatwebsite\Excel\Facades\Excel;
Excel::import(new NewProducts($import->id), $path)->chain([
new AfterImport($import->id)
]);
Upvotes: 0
Views: 753
Reputation: 310
Finally, I got the solution it was a problem with packages, I have updated the package phpoffice/phpspreadsheet. Now working fine
Upvotes: 1