コード例 #1
0
ファイル: ExamenController.php プロジェクト: jgt/ceprog
 public function pdfExamen($id)
 {
     $pdf = App::make('dompdf.wrapper');
     $resultado = Resultado::find($id);
     $customPaper = array(0, 0, 950, 950);
     $paper_orientation = 'landscape';
     $pdf->setPaper($customPaper, $paper_orientation);
     $pdf->loadview('showExamen', compact('resultado'));
     return $pdf->stream();
 }