I want to create multiple pages, but each one with diferent orientation
1st page -> Potrait
2nd page -> Landscape
3rd page -> Potrait
4th page -> Potrait
....
With TCPDF will be easy to solve
$pdf = new TCPDF('P', PDF_UNIT, 'LETTER', true, 'UTF-8', false); // create PDF
$pdf->AddPage('L', PDF_UNIT, 'LETTER', true, 'UTF-8', false); // Add page Landscape
$pdf->AddPage('P', PDF_UNIT, 'LETTER', true, 'UTF-8', false); // Add page Potrait
$pdf->AddPage('L', PDF_UNIT, 'LETTER', true, 'UTF-8', false); // Add page Landscape
....
With Dompdf and Laravel no idea how can I solve. Thanks.