Using the laravel-dompdf package to convert the current page into a pdf
Is there a guide on how to convert the current page or blade file into pdf?
I tried on my own but I'm encountering issues "Using $this when not in object context"
Solution:Jump to solution
You can't really do that with domPDF. You would need jsPDF for that, for domPDF you need to write a blade parser for the data to the best display
2 Replies
Solution
You can't really do that with domPDF. You would need jsPDF for that, for domPDF you need to write a blade parser for the data to the best display
I seee if that's the case I'll try the jsPDF
Thank you