我遇到错误,我不知道这是什么错误
在我的控制器中
public function exportExcel(Request $data)
{
return Excel::download(new VgetAttGeneralExport($data), 'rekap-perkelas.xlsx');
}
这是我的请求
0:{keyid: 6046, att_seq: 6046, att_enumber: "101415287", att_method: null, att_workcode: null,…}
在我的导出文件夹中
namespace App\Exports;
use Illuminate\Contracts\View\View;
use Maatwebsite\Excel\Concerns\FromView;
use Maatwebsite\Excel\Concerns\Exportable;
class VgetAttGeneralExport implements FromView
{
use Exportable;
public $data;
/**
* @return \Illuminate\Support\Collection
*/
public function __construct($data) {
$this->data = $data;
}
public function view(): View
{
$data = $this->data;
return view('exports.Kehadiran',compact('data'));
}
}
这就是我的观点
<table>
<tbody>
@foreach($data as $item)
<tr>
<td>{{ $loop->iteration }}</td>
<td>{{ $item->dated }}</td>
<td>{{ $item->employee_id }}</td>
<td>{{ $item->employee_name }}</td>
<td>{{ $item->tingkat }}{{$item->div_name}}{{$item->kelas}}</td>
<td>{{ $item->stat_name }}</td>
<td>{{ $item->stat_desc }}</td>
</tr>
@endforeach
</tbody>
</table>
我尝试了很多方法,但遇到了困难,任何人都可以帮助我,我是api laravel的初学者。