Heres a simple example of how to paginate a controller action in Cakephp3;
public function index() { $this->paginate = [ 'order' => [ 'controller' => 'asc' ], 'maxLimit' => 20 ]; $menus = $this->paginate($this->Menus); $this->set(compact('menus')); $this->set('_serialize', ['menus']); }