我有一个这样的模型Catalog
:
class Catalog extends AppModel {
public $hasMany = array(
'Entries' => array(
'className' => 'Entry',
);
);
}
在我index
看来,我想显示Entries
per的数量Catalog
。我还想让用户可以Catalogs
按Entries
.
我是 CakePHP 的初学者,有什么方法可以获取COUNT(entry_id)
perCatalog
并将其显示在数组中?并通过$this->Paginator
?