I get reference from here : https://github.com/barryvdh/laravel-dompdf
My controller code is like this :
public function listdata()
{
$pdf=PDF::loadView('pdf.test_pdf');
return $pdf->stream('test_pdf.pdf');
}
I try setting landscape in \config\dompdf
like this :
'show_warnings' => false, // Throw an Exception on warnings from dompdf
'orientation' => 'landscape',
But, it's not working. The result is still portrait
Is there any people who can help me?
You can use the option setPaper
option:
public function listdata()
{
$pdf = PDF::loadView('pdf.test_pdf')->setPaper('a4', 'landscape');
return $pdf->stream('test_pdf.pdf');
}
Hope this works!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With