First we have to create project in htdocs Ex: pdfcreator

Then go inside the project

Then we have to install composer
$ composer require barryvdh/laravel-dompdf

Now serve the page to browser
php artisan serve

Then page is opening successfully

Then go to your texteditor and go to C:\xampp\htdocs\pdfcreator\config\app.php
And write this in
‘providers’ =>
Barryvdh\DomPDF\ServiceProvider::class,

And write this in
‘aliases’ =>
‘PDF’ => Barryvdh\DomPDF\Facade::class,

Now we have to make Controller
php artisan make:controller PDFController

And write this code
Now we make route
Make blade page with name index.blade.php in resources/view
Make another blade page with name page.blade.php in resources/view
Then run 127.0.0.1:8000/show/

After Clicking on button you got PDF file
With your content
