How to use Cakepdf in theme AdminLTE? I can not generate the pdf following the steps of http://www.edsonmm.com/generar-pdf-en-cakephp-con-el-plugin-cakepdf/#cakephp3 Without theme AdminLTE, works correctly
You have to create the file src/Template/Layout/pdf/AdminLTE.ctp
On the AppController: $this->viewBuilder()->layout('AdminLTE');
On the controller: $this->viewBuilder()->setClassName('CakePdf.Pdf');
And on the action Template something like: /src/Template/Services/pdf/export.ctp
It Worked for me.