laravel-dompdf
laravel-dompdf copied to clipboard
A DOMPDF Wrapper for Laravel
When i try to output my pdf i get "Undefined array key ''" on line **4752** in **dompdf\dompdf\lib\Cpdf.php**. That particular line of code is: `$font = $this->fonts[$this->currentFont];` Both $this->fonts and...
I get the PDF, but the Arabic character are like "??????" question mark icon **composer.js** "barryvdh/laravel-dompdf": "^2.0", **app.js** 'providers' => [ Barryvdh\DomPDF\ServiceProvider::class, ], 'aliases' => [ 'PDF' => Barryvdh\DomPDF\Facade::class, ]...
This is my Service ``` use Barryvdh\DomPDF\Facade\Pdf; class PdfService { public function __construct() {} public static function voucher(Voucher $voucher) { $data = [ 'total_amount' => $voucher->amount, 'code' => $voucher->code ];...
how do you put a watermark to the generated pdf?
**Describe the bug** This is always not found
Hi there, When attempting to use dompdf with Laravel Vapor and importing a google font via CSS import, I'm getting the following issue: ``` fopen(/tmp/storage/fonts/work_sans_normal_d6eeffee426555fe4bcfe67ec779bf1d.ufm): Failed to open stream: No...
Encode the filename according to RFC 3986 when downloading the file. We had problems with umlauts in the filename, when we deployed a project with Vapor. Locally it worked fine,...
I have working laravel server that implements pdf rendering using laravel dompdf. It has been working very well in current implementation. But when our teams decided to make testing environment...
Hey Guys, I have updated laravel-dompdf from v0.8.7 to any version above 1.x and my generating templates are broken. If i downgrade to 0.8.7 it is working but otherwise i...