I'm currently using Barryvdh \ DomPDF to create reports on a system made with Laravel 5.1
, but it's very slow because of the size of the reports, so that often (almost always), it ends up running out of time for loading.
I make the entire report as if it were a view
normal, and then load it into PDF as per the documentation, with loadView
. The reports have about 70 pages.
How can I optimize this?