laravel-dompdf icon indicating copy to clipboard operation
laravel-dompdf copied to clipboard

A DOMPDF Wrapper for Laravel

Results 117 laravel-dompdf issues
Sort by recently updated
recently updated
newest added

$data = User::all()->toArray(); $pdf = Pdf::loadView('users/pdf', $data); return $pdf->download('usersPDF.pdf'); in pdf.blade.php which is the view receives $data you can see error (undefined variable $data) . could you help me about...

I want to make an online pdf certificate. I use a certificate background image and the name dynamically comes from the database. Everything is ok but when I download it...

I am getting an error when my code is deployed in cPanel hosting server with php 8.1.21 in PDF::loadView() function. Error is shown in the title. This is the error...

This pull requests adds the functionality to create a font cache directory if it doesn't exist. By ensuring that the font cache directory will be created, it will prevent any...

**Describe the bug** I was doing a fresh installation of my project packages and found a warning at the end `Found 4 security vulnerability advisories affecting this package`. **To Reproduce**...

It does not support SVGs in html. Add if possible

I have error Gateway Timeout when download. when i save file, it size is 2.59M $pdf = \App::make('dompdf.wrapper'); $pdf->getDomPDF()->set_option("enable_php", true); $pdf->loadView('shop.invoice.print', $this->data); return $pdf->download($fileName);

please can you add support for apply css after or before page break. you can create your own class names for it like; 1. before-page-break (all element before pageBreak) 2....

how to add a fixed div in last page only

Hello, I am using Laravel 9, I get the following error when trying this command, the dompdf I am using is version ^2.0: `use Barryvdh\DomPDF\Facade\Pdf;` `return PDF::loadView('master.vehicle.print', compact('vehicles')) ->setPaper('A4', 'potrait')...