Let’s assume there is a model Project. A Project has many Campaigns. A Campaign has many Variants. The Project (and all related data through it) is in the scope of a multi-tenancy Team. So the nesting is: Team → Project → Campaign → Variants.
Any help on these points would be greatly appreciated!
1. Nested Resources Is it possible to show Campaigns in the main navigation within the scope of the current Project? (For example, when
/project/1
/project/1
is in the URL path.)
Setting
$shouldRegisterNavigation = true
$shouldRegisterNavigation = true
has no effect. Manually adding this to the
navigationItems
navigationItems
in the
AppPanelProvider
AppPanelProvider
works, but there are multiple models like this, so it is not a desirable solution.
2. Action with RenderHook Is it possible to trigger a modal showing all the Projects of the current Team in a table?