如何使用 dompdf 在 laravel 4.2 中添加自定义动态文本页脚

how to add custom dynamic text footer in laravel 4.2 using dompdf

我已经按照这个例子做了 laravel-4-create-pdf-use-dompdf:

如何添加自定义动态页脚

 $dompdf = \App::make('dompdf');
 $dompdf->loadHTML('<h1>naeem World!!</h1>');

有人知道吗?或者请建议,

我也遵循了这个解决方案DOMPDF add a header and footer ,但它不能正常工作。

已编辑:

我希望$db_data['footer_text']成为所有页面动态的页脚文本,它来自数据库。

您提供的 link 中的解决方案应该足够了。您只需要制作一个更完整的 HTML 文档。

$html = <<<EOT
  <html>
  <head>
    <style>
      @page { margin-bottom: 50px; }
      .footer { position: fixed; bottom: -50px; margin: 10px; }
    </style>
  </head>
  <body>
    <h1>naeem World!!</h1>
    <h2>section 1</h2>
    <div style="page-break-before: always;"></div>
    <div class="footer">{$db_data['footer_text']}</div>
    <h2>section 2</h2>
  </body>
  </html>
EOT;
$dompdf = \App::make('dompdf');
$dompdf->loadHTML($html);