我从cakephp开始,我想知道如何在我的控制器中访问到给出的几个表。
想法是恢复每家工厂的门店数量。
谢谢您的帮助
$centrales = $this->Centrales->find('all');
$this->set(compact('centrales'));
//Nombre De Centrale
$Nombre_centrales = $centrales -> count ();
$this->set(compact('Nombre_centrales'));
//2nd tables
foreach ($centrales as $centrale) {
$magasins-$centrales = $this->Magasins->find('all',
[
'conditions' => ['Magasins.centrale LIKE => $centrales']
]);
}