Euro symbol not being displayed in PDF fix

This commit is contained in:
Billy Bouman 2019-02-08 10:39:14 +01:00
parent d75d9c6932
commit eb0f26fc9d

View File

@ -349,7 +349,7 @@ class Invoices extends Controller
$invoice = $this->prepareInvoice($invoice);
$html = view($invoice->template_path, compact('invoice'))->render();
$html = mb_convert_encoding(view($invoice->template_path, compact('invoice'))->render(), 'HTML-ENTITIES');
$pdf = \App::make('dompdf.wrapper');
$pdf->loadHTML($html);