我正在尝试从我的表中导出部分数据而不是所有数据,我正在使用 Maatwebsite插件
我在控制器中尝试了以下代码
public function report(Request $request)
{
$sdate = $request->query('sdate');
$edate = $request->query('edate');
$report = Report::whereDate('created_at', '>=', $sdate)
->whereDate('created_at', '<=', $edate)
->get();
return Excel::download($report, 'report.xlsx');
}
在这个时候我得到空的excel文件。
创建应用程序/导出后,我能够获取所有数据
像下面
应用程序/导出/ReportExport.php
public function collection()
{
return Report::all();
}
但我怎么能在控制器中做到这一点?或者我怎样才能将 $report 数据控制器发送到集合?