Laravel Dompdf Installation

 Laravel Dompdf     Installation

 





Dompdf is Laravel Package to generate Pdf files. 
Follow the steps after successfull installation of Laravel into Your Computer
 
step 1 : Enter the following command, this will install the dompdf into your laravel project
 
composer require barryvdh/laravel-dompdf
 
step 2 : After Installation and updating composer add the following lines to register provider in bootstrap/app.php 

$app->register(\Barryvdh\DomPDF\ServiceProvider::class);
 
 
Step 3 : Craete a blade file in views for pdf layout in my case its pdf.invoice.blade.php add the html code here

Step 4 : Add the Following Code into your Controller

 use Barryvdh\DomPDF\Facade\Pdf;
$pdf=PDF::loadView('pdf.invoice', $data);
return $pdf->download('invoice.pdf')
;
 
 
Now you can run the laravel project and route to the above contoller to Generate the PDF files


Comments

Popular posts from this blog

Laravel Installation Using Composer