CakePHP : Load Model From Other Controller


In your Controller were you want to load the model.
<?php
 
  App::import('Controller');

  class ReportsController extends AppController { 
 
     
    public function other_reports() {

          //this will load other model 
          $this->loadModel('OtherModel');
          $otherModels = $this->OtherModel->find('all');
          $this->set('otherModels', $otherModels);

    } 
 
 
  }
?>

Comments