【发布时间】:2016-03-15 04:02:48
【问题描述】:
在 Laravel Excel 的文档中找不到下载()后如何重定向()。我试过这样做
Excel::load('/bills/bill.template.xlsx', function($doc) {
$sheet = $doc->setActiveSheetIndex(0);
$sheet->setCellValue('G21', '{buyer}');
})->download('xlsx');
return redirect('/')->with('notification','custom msg');
但它不起作用。
【问题讨论】: