Filament::getPanel('dashboard')->getUrl() returns the wrong url
I have a laravel app, based on JetStream, I have two panels, Admin and Dashboard
in my I have this:
but.... the url is mysite.test/admin and not mysite.test/dashboard
if I then create a simple view like this:
the url is ok in the view but not in the menu
1 Reply
Funny thing: if I remove ->default from the AdminPanel, then I get this error in the navigation-menu.blade.php
if I add ->default() to the dashboard panel it seems to work - but I cannot have 2 default panels...