use Mpdf\Mpdf;
To force a file download instead of opening it in the browser, pass 'D' as the second parameter. mpdf download
ob_end_clean(); // Clear any previous output $mpdf->Output('file.pdf', 'D'); use Mpdf\Mpdf; To force a file download instead
// Set headers for download header('Content-Type: application/pdf'); header('Content-Disposition: attachment; filename="' . $filename . '"'); header('Cache-Control: private, max-age=0, must-revalidate'); header('Pragma: public'); // Clear any previous output $mpdf->