pdf-l4
pdf-l4 copied to clipboard
PDF Conversion doesn't support CSS 'border-radius'
It seems that the lib doesn't support border-radius
property of CSS.
In a plain HTML I can see the shape of the border, but after the conversion, I can only see it as a rectangle.
Simple Method:
$ex_1 = $this->repo->call_method($this->currUser->id);
$view = View::make('reports.CV', compact('ex_1'));
$pdf = PDF::load($view, 'A4');
$pdf = $pdf->show();
return $pdf;
You should try this package which has the latest dompdf version : https://github.com/barryvdh/laravel-dompdf
That's what I thought, thanks.