how can i limit this pagination to 5 for example?
$comments = $this->paginate($this->Comments
->find()
->contain([‘Users’, ‘Users.Profiles’])
->limit(‘5’)
->where([‘article_id =’ => $id]))
because this is not working.
here it is working: $this->set(‘articles’,$this->paginate($articles,[‘limit’=>‘3’]));
but its a different syntax…