有没有办法使用 phpwkhtmltopdf 包含一个 blade 模板而不是普通的 html?
is there a way to include a blade template instead of plain html using phpwkhtmltopdf?
我正在使用 phpwkhtmltopdf
包将我的 html 转换为 PDF。
我如何将 .blade.php 转换为 pdf?
我试过了
$pdf = new Pdf;
$pdf->addPage('temp');
$pdf->saveAs('test2.pdf');
但它不起作用并给我以下错误:
QSslSocket:无法解析 SSLv3_client_method
QSslSocket:无法解析 SSLv3_server_method
错误:加载页面失败 http:///var/www/html/project/views/temp(有时只需使用 --load-error-handling ignore 忽略此错误即可)
由于网络错误以代码 1 退出:HostNotFoundError
好的,我找到了解决方案,您可以像这样使用 View()
$pdf->addPage(View('temp'));
或
$view= view('temp')->render();
$pdf->addPage($view);
我正在使用 phpwkhtmltopdf
包将我的 html 转换为 PDF。
我如何将 .blade.php 转换为 pdf?
我试过了
$pdf = new Pdf;
$pdf->addPage('temp');
$pdf->saveAs('test2.pdf');
但它不起作用并给我以下错误:
QSslSocket:无法解析 SSLv3_client_method QSslSocket:无法解析 SSLv3_server_method 错误:加载页面失败 http:///var/www/html/project/views/temp(有时只需使用 --load-error-handling ignore 忽略此错误即可) 由于网络错误以代码 1 退出:HostNotFoundError
好的,我找到了解决方案,您可以像这样使用 View()
$pdf->addPage(View('temp'));
或
$view= view('temp')->render();
$pdf->addPage($view);