我已按照此示例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']
成为所有页面的页脚文本,即它即将发布的数据库。
答案 0 :(得分:1)
您提供的链接的解决方案应该足够了。您只需要制作更完整的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);