pdf-l4 icon indicating copy to clipboard operation
pdf-l4 copied to clipboard

Dompdf for Laravel 4

Results 70 pdf-l4 issues
Sort by recently updated
recently updated
newest added

# Error returned when running this code using laravel 4.2 ``` php $html = View::make('receipt.show', $data); return PDF::load($html->render(), 'A4', 'portrait')->download('my_pdf'); ``` When i try to return the view, it appears...

I was trying to view generated PDF file using google document viewer (https://docs.google.com/gview?url= &embedded=true). But it says "No preview available". This happens only for the PDF files which are generated...

May need to add a warning about the update command of Composer en the Readme file because it get latest versions of ALL dependencies and can generate conflicts. I can...

Hey Jonathan or anyone else who may know this, In my development environment i'm getting this error, both on download and with show-method. `file_put_contents(/home/vagrant/*DOMAIN*/vendor/thujohn/pdf/src/Thujohn/Pdf/dompdf/lib/fonts/Times-Bold.afm.php): failed to open stream: Protocol error`...

I'm attempting to generate multiple PDFs at a time (in order add them to a zip file for the user to download). ``` php foreach ($items as $item) { $html...

Hi @thujohn , I'm getting the 'Image not found' error yet I have done all that you suggested. The URL to the image displays where the image should show and...

Hi. I have users that download their invoices, each invoice is pdf file from the html, so, an user can have several invoices, now i have to put together all...

Can you please tag a new version of the package, ie. `1.0.6`? Requiring `dev-master` is bad practice, and the current `1.0.5` version won't work with Laravel 5 (as the PR...

I am creating pdf in controller, When I use View::make('invoice.view') to load html it works fine. $pdf = new \Thujohn\Pdf\Pdf(); $content = $pdf->load(View::make('invoice.view'))->output(); File::put($compete_file_path, $content); But when I pass data...

Hi, When I try to Print the below line, it prints blank in the header: Havé an ascent in the line. However, The same line gets printed in the body...