createTemplate(); $template->setFile(__DIR__ . '/../../../resources/pdf/example.latte'); $template->title = 'Contributte PDF example'; $this->pdfResponse->setTemplate($template->renderToString()); $this->pdfResponse->documentTitle = 'Contributte PDF example'; // creates filename 2012-06-30-my-super-title.pdf $this->pdfResponse->pageFormat = 'A4-L'; // wide format $this->pdfResponse->getMPDF()->SetFooter('|Contributte PDF|'); // footer return $this->pdfResponse; } public function actionViewPdf(): void { $pdf = $this->createPdf(); $pdf->setSaveMode(PdfResponse::INLINE); $this->sendResponse($pdf); } public function actionDownloadPdf(): void { $pdf = $this->createPdf(); $pdf->setSaveMode(PdfResponse::DOWNLOAD); $this->sendResponse($pdf); } }