How do I redirect to another page for successfully exporting a laravel view file. I am using Laravel Excel 2.1.20. I researched and I discovered that this can't be done except I redirect first and then download the excel sheet. But I don't know how to do this. Past solutions on this issue have not really been helpful to me.
Here is my controller:
$export = Excel::create('Request for Quote', function($excel) use($item, $request) {
$excel->sheet('RFQ 1', function($sheet) use($item, $request) {
$sheet->loadView('requests.send_rfq_pdf')
->with('item', $item)
->with('request', $request);
});
})->download('xls');