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
$query = $this->User->find('all', [ 'recursive' => 2, 'order' => array('Profile.winning' => 'DESC'), 'limit' => 25, 'offset' => 50 ]); $this->paginate = array( $query, 'limit' => 5 );