Can't find in docs of Laravel Excel how to redirect() after download(). I've tried to do smth like this
Excel::load('/bills/bill.template.xlsx', function($doc) {
$sheet = $doc->setActiveSheetIndex(0);
$sheet->setCellValue('G21', '{buyer}');
})->download('xlsx');
return redirect('/')->with('notification','custom msg');
but it doesn't work.