Is it possible to display a user menu for guests?
I created a panel without standard filament authentication, and I created a secondary login type, then I want to display some menus for this type of user.
2 Replies
Filament requires an authenticated user.
You can show/hide user menu items via
->visible()
method. So ->visible(fn () => auth()->user()->your_check)
Thank you @Dennis Koch