I want to import a csv:xlsx file which has 50 column and 1M rows I tried with laravel-excel package and Laravel queue. Some how i cant import the data. Nginx timeout given. I modify the max execution time in my php setting
In import controller
public function import(Request $request) { Excel::import(new LeadsImport, $request->file); }
In LeadsImport
public function collection(Collection $rows) { dispatch(new ImportJob($rows)); }