CakePHP: using models in different controllers

Viewed 38621

I have a controller/model for projects. so this controls the projects model, etc, etc. I have a homepage which is being controlled by the pages_controller. I want to show a list of projects on the homepage. Is it as easy as doing:

function index() {
    $this->set('projects', $this->Project->find('all'));        
}

I'm guessing not as I'm getting:

Undefined property: PagesController::$Project

Can someone steer me in the right direction please,

Jonesy

3 Answers
Related