How to Limit the paginate in cakephp ?
Assume that i have 400 records. I need to get only 25 records from 50th record to 75th record and need to display 5 recor
In cakephp 4.x version we have to call like below
public function index() { $this->loadComponent('Paginator'); $settings = array( 'limit' => 50 ); $prices = $this->Paginator->paginate($this->Prices->find(), $settings); $this->set(compact('prices')); }