I get from here : https://github.com/barryvdh/laravel-dompdf
Previous, I use PHP 7.0.8. My pdf no error
When I use PHP 7.1, my pdf exist error
See below
My controller is like this :
public function listdata(Request $request)
{
...
$pdf = PDF::loadView('test_print.test', ['data' => $data]);
$pdf->setPaper('legal', 'landscape');
return $pdf->stream('test_print.test');
}
My pdf view is like this :
<h1>This is test</h1>
<table class="tg">
<tr>
<th class="tg-3wr7">kolom 1</th>
<th class="tg-3wr7">kolom 2</th>
<th class="tg-3wr7">kolom 3</th>
<th class="tg-3wr7">kolom 4</th>
<th class="tg-3wr7">kolom 5</th>
</tr>
@php ($row = 22)
@for($i=0;$i<$row;$i++)
<tr>
<td class="tg-rv4w">test 1</td>
<td class="tg-rv4w">test 1</td>
<td class="tg-rv4w">test 1</td>
<td class="tg-rv4w">test 1</td>
<td class="tg-rv4w">test 1</td>
</tr>
@endfor
</table>
<br>
<!-- start position signature -->
<div class="signature">
London, 8 January 2017<br>
Chelsea Player<br><br><br><br>
Eden Hazard<br>
</div>
<!-- end position signature -->
When executed, there exist error like this :
1/1 ErrorException in Page.php line 494: A non-numeric value encountered
Why laravel-dompdf not working di php 7.1?