1
resposta

Redirect após download de um arquivo

Como faço para dar redirect após download de um arquivo ?

// Generate and return the spreadsheet
        Excel::create($nomeRelatorio, function ($excel) use ($consultaData) {
        // Build the spreadsheet, passing in the consultas array
            $excel->sheet('sheet1', function ($sheet) use ($consultaData) {
                $sheet->fromArray($consultaData);
            });

        })->download('xlsx');
1 resposta

Oi Pablo, tudo bem? Acho que você pode chamar o redirect direto logo abaixo do download. Não?

return redirect()->route('nomeDaRota');