How to add a custom 'CreateRecord Page' to the sidebar navigation?
If I use
I am replacing the default navigation items, including those that are added through plugins. Is there a method I can use with
$builder->items([...this_method_calls_default_nav_items()...])
so that I can retrieve the default navigation items?4 Replies
this is in the panel provider?
why not add items:
When I use navigationItems() as in
I get
Call to a member function getId() on null
Error.
same NavigationItem used in $panel->navigation(NavigationBuilder $builder)
works as intendeduse
->url(fn (): string => TicketResource::getUrl('issue'))
Thanks