I have to use the DomPDF package in the laravel(5.8) project. But we face a Maximum execution time Error in the report creation process.
I get a query result in 6sec. My query count is 1971.
My package details: barryvdh/laravel-dompdf: "0.8.7" laravel/framework": "5.8"
My sample code for report creation:
$pdf = PDF::loadView('reports.demodetails.viewreport',compact('alldetails'));
return $pdf->download('demoreport.pdf');
But the report creation process takes more time to load.
I really appreciate it if anyone can suggest it to me.