$mode, 'format' => $format, 'default_font_size' => $default_font_size, 'default_font' => $default_font, 'margin_left' => $mgl, 'margin_right' => $mgr, 'margin_top' => $mgt, 'margin_bottom' => $mgb, 'margin_header' => $mgh, 'margin_footer' => $mgf, 'orientation' => $orientation ]); } public static function createMpdf($options = []) { $mpdf = new Mpdf( array_merge([ 'mode' => 'utf-8', 'format' => 'A4' ], $options) ); return $mpdf; } }