How can I set limit to association model ("Comment" model in below code) when using paginator component. I am using below code but not working :
$this->Paginator->settings = array(
'Post' => array(
'recursive' => 1,
'conditions' => $conditions,
'limit' => 10,
),
'Comment' => array(
'limit' => 1
)
);
You have Post hasMany Comment?
If yes, You can set limit by variable $hasMany in Post model: