$this->Author->get_popular_authors() //Inside Book::get_popular_authors() $Author = new Author(); $populars = $Author->find('all', $options); return $populars; //BooksController $this->Book->Author->get_popular_authors(); //Book Model $this->Author->get_popular_authors();