【发布时间】:2021-05-28 16:36:29
【问题描述】:
我创建了一个适用于单个查询的查询,但是当我使用 ->get() 时它会提示
Object of class stdClass could not be converted to string
这是我的代码:
$result = DB::table('users')->get(); // the data you want to download as csv
$csv = (array)$result; // stored the data in a array
return Excel::create('csvfile', function ($excel) use ($csv) {
$excel->sheet('mySheet', function ($sheet) use ($csv) {
$sheet->fromArray($csv);
});
})->download('xls');
【问题讨论】:
标签: excel laravel maatwebsite-excel