I want to generate PDF file from a view in laravel5. I found https://github.com/barryvdh/laravel-dompdf and added to my project via composer.
but it is not working,
$pdf = PDF::loadView('invoice', array());
return $pdf->download('invoice.pdf');
Getting error is
ErrorException in InvoiceController.php line 34: Non-static method Barryvdh\DomPDF\PDF::loadView() should not be called statically, assuming $this from incompatible context
Is there any other package for laravel5?