when I try to load my file it loads only file URL what is the solution I try this but it loads only file path in pdf file
return PDF::loadFile(public_path().'/your_html.html')->stream('download.pdf');
when I try to load my file it loads only file URL what is the solution I try this but it loads only file path in pdf file
return PDF::loadFile(public_path().'/your_html.html')->stream('download.pdf');
Copyright © 2021 Jogjafile Inc.
Your file is in HTML format and also your path indicates it's outside the resources folder, you have to add your HTML file in blade format in
resourcesfolder.loadViewfunction first render the view and then pass it toloadHTMLfunction.DomPDF https://github.com/barryvdh/laravel-dompdf/blob/00443b33aff68f9e996de536c8f62735c4042131/src/PDF.php
And if you want to load
htmlfile not inbladeformat fromresourcefolder so you can checkout how to include html extension file.Laravel Blade @include .html files