I'm working on a new LeftAndMain subclass. A new section I anticipate will have a lot of activity, multiple tabs, screens, actions. I don't really want to put all this in one LeftAndMain subclass, so what would be the recommended way to put all this activity into logical groups of controller actions? Is there a standard way of delegating actions to other controllers? E.g. one per tab?
Or is it simpler to avoid routing issues and just create a CMS submenu system (https://github.com/ajshort/silverstripe-groupedcmsmenu) with their own LeftAndMain? I would like to know how to delegate if it's possible (and recommended or applied often).