Open PDF in a new tab using dompdf

前端 未结 5 2045
花落未央
花落未央 2020-12-15 21:04

Im trying to generate pdf using dompdf, how can I open the pdf in a new tab in a browser? Like, I Click A link for the PDF and it should open in a new tab, not save it autom

5条回答
  •  时光取名叫无心
    2020-12-15 21:23

    Am still experimenting, but something like this works fine as well

    $pdf->loadView('file/path', compact('values'));
    return $pdf->stream();
    

    With this you can add dynamic values to your pdf file page within the browser.

提交回复
热议问题