I am trying to get the count of Comments for each Shop, and am really stuck on this step.
Is it possible to do it, and how?
public function display()
{
$this->loadModel('Shops');
$shoplist=$this->Shops->find('all')->order(['title' => 'DESC', 'id' => 'ASC'])->contain([
'Comments' => function ($q) {
return $q->select('id')->where(['published' => 1])->count();
}]);;
$this->set('shoplist', $shoplist );
}