I currently have 3 controllers, AdministratorController.php
, ResellerController.php
and ServiceProviderController.php
.
Each of these have their own actions and views. For instance, AdministratorController.php
has the views:
Each of these controllers' views will have exactly the same layout - the only difference in layout being different navigational menus.
So my question is, how I can configure different navigational menus for controllers, but using the same layout?
Many thanks