CakePHP: Many views - one controller
July 4, 2007 . by BillIf you want multiple controllers to be able to share a view, do this:
- Put the shared views in the views/common directory
- Call a shared view like this: $this->render(’../common/view_name’);
If you want multiple controllers to be able to share a view, do this: