I am using Laravel 5.4 and using
"barryvdh/laravel-dompdf": "^0.8.0",
https://github.com/barryvdh/laravel-dompdf
i have follwoing code in controller
$pdf = PDF::loadView('print.print', $data);
return $pdf->download('invoice.pdf');
As it will download pdf properly but i am looking to preview the content in the view to print. i have googled lot still not able to get it
->stream()method? - Khoonwindow.print()the browser will preview the pdf as print - Abdelrahman M. Allam