laravel-dompdf
laravel-dompdf copied to clipboard
A DOMPDF Wrapper for Laravel
I recently ran into the need to dynamically switch the filesystem that is used by the PDF object. In order to do so I figured I'd overwrite the facade binding...
Closes #908 It could be used for cloud disks Example ```php // keeps old functionality $pdf->save('relative_path/file.pdf'); $pdf->save('/absolute_path/file.pdf'); // adds new functionality $pdf->save('file.pdf', 's3'); $pdf->save('file.pdf', 'local'); // concatenate $pdf->save('file.pdf', 'local')->save('file.pdf', 's3');...
Recently I upgraded my Laravel to ver 9.20.0 which brings this err **`Class "Barryvdh\DomPDF\Facade" not found`** I have included it in the providers `Barryvdh\DomPDF\ServiceProvider::class,` and aliases too `'DPDF' => Barryvdh\DomPDF\Facade::class,`...
Just test, no release needed
Can I report it as a problem on dompdf I found it in line 3304 vendor\dompdf\dompdf\src\Css\Style.php when I change ``` function set_z_index($val) { $this->_props["z_index"] = $val; $this->_props_computed["z_index"] = null; $this->_prop_cache["z_index"]...
Its working in my dev environment using PHP 8.1.6, but when i brought my project into production it give me an error such this. Dompdf\FrameReflower\Text::layout_line(): Argument #1 ($block) must be...
Hi everyone, I'm having some trouble with the link generation in my html > pdf files. Working local, there's no problema, I work with macOS and php 7.4. But on...
**Describe the bug** There is no support for CSS3 features, like border-box, flexbox, grid, etc. This is very annoying, since CSS3 is the most used version of CSS. **To Reproduce**...