我有這樣的代碼,試圖生成報告爲PDF:laravel-DOMPDF返回錯誤,代碼不行
$details=array(
'id'=>$find->id,
'full_letter_title'=>$find->full_letter_title,
'smarok_no'=>$find->smarok_no
);
$data['details']=$details;
$pdf = PDF::loadView('letter.view', $data);
return $pdf->stream();
但它返回錯誤
ErrorException in Adobe_Font_Metrics.php line 42: fopen(C:\xampp\htdocs\ams\storage\fonts/ba50cf37c0b6d75f8275d2b44106f606.ufm): failed to open stream: No such file or directory
我無法理解什麼是錯在這裏。
給出一個合適的文件夾路徑來生成pdf。 –
我寫了這個,但沒有工作@Kaushalshah $ pdf = PDF :: loadView('app/resources/views/letter/view.blade.php',$ data); –
我認爲這個鏈接可能會幫助你http://stackoverflow.com/questions/35606120/dompdf-failed-to-generate-pdf-from-simple-html-bootstrap –