How to install dompdf in laravel???
Answer (1)
DOMPDF Wrapper for Laravel 5
Require this package in your composer.json and update composer.
This will download the package and the dompdf + fontlib libraries also.
Installation :
composer require barryvdh/laravel-dompdf
Run above line in github / composer
use the facade:
$pdf = PDF::loadView('pdf.invoice', $data);
return $pdf->download('invoice.pdf');