mccarlosen / laravel-mpdf

Generate PDFs in Laravel with Mpdf.
403 stars 107 forks source link

Having an error on method loadView #115

Closed samuel-lujan closed 1 year ago

samuel-lujan commented 1 year ago

I'm trying to create some PDF using my blade template page. but when run the code, show me the error

image

All of the namespaces is looking good, but I don't even know what's changed.

mccarlosen commented 1 year ago

You are not using the facade correctly.

This is wrong:

// ....
(new PDF)->loadView(); 

This is good:

use PDF;

$pdf = PDF::loadView(/* ... */);