Use PaginatorHelper in Cells CakePhp 3
问题 Hi I'm trying to use Paginator within a Cell the Paginator works rigth but the PaginatorHelper in the Template of the cell just doesn't work. I'm using CakePhp 3.5 Here is my code src/View/Cell/FinderCell.php namespace App\View\Cell; use Cake\View\Cell; use Cake\Datasource\Paginator; class FinderCell extends Cell { public function display() { $this->loadModel('Pokemon'); $paginador = new Paginator(); $pokemons = $paginador->paginate( $this->Pokemon->find() ); $this->set(compact('pokemons'));