refs #762 changes all pdf to html render

This commit is contained in:
cuneytsenturk
2019-02-13 13:05:33 +03:00
parent 92aa7f7ab3
commit e3207d647e
3 changed files with 9 additions and 44 deletions

View File

@ -348,7 +348,8 @@ class Bills extends Controller
$currency_style = true;
$html = view($bill->template_path, compact('bill', 'currency_style'))->render();
$view = view($bill->template_path, compact('bill', 'currency_style'))->render();
$html = mb_convert_encoding($view, 'HTML-ENTITIES');
$pdf = \App::make('dompdf.wrapper');
$pdf->loadHTML($html);