0
導出爲pdf時出錯。我想作曲家更新和添加的東西到app.php ANF composer.jsonDomPDF.php中的PHPExcel_Writer_Exception第34行:無法加載PDF呈現庫
public function exportPDF($request, $orgid)
{
/*$pdf = App::make('snappy.pdf.wrapper');
$pdf->loadHTML('<h1>Test</h1>');
return $pdf->inline();*/
$data = User::get()->toArray();
return Excel::create('itsolutionstuff_example', function($excel) use ($data) {
$excel->sheet('mySheet', function($sheet) use ($data)
{
$sheet->fromArray($data);
});
})->download("pdf");
}