panel

How can I keep this Jetstream navigation menu inside a Filament panel? I like Jetstream profile icon, editor and team managment.
No description
10 Replies
PabloZagni
PabloZagniOP14mo ago
Filament
Companies by Andrew Wallo - Filament
A comprehensive multi-tenant authentication and authorization solution designed for Filament, with a focus on company-based tenancy.
Dennis Koch
Dennis Koch14mo ago
You can't. It's a complete separate layout. You can use horizontal nav menu though since v3.
PabloZagni
PabloZagniOP14mo ago
I'm trying to use ->userMenuItems([ 'profile' => MenuItem::make() ->label('Profile') ->icon('heroicon-o-user-circle') ->url(static fn () => url(Profile::getUrl())), ])
Dennis Koch
Dennis Koch14mo ago
What exactly do you want to archieve? And what's the issue?
PabloZagni
PabloZagniOP14mo ago
I would like to use Jetstream user profile edit, and team management.
toeknee
toeknee14mo ago
Just build custom pages in Filament and clone the livewire page code from Jetstream
PabloZagni
PabloZagniOP14mo ago
Yes, but I neet to add it to the userMenuItems
toeknee
toeknee14mo ago
So do that with ->userMenuItems() ? i.e.
->userMenuItems([
MenuItem::make('Profile')
->label('Edit Account')
->openUrlInNewTab()
->icon('heroicon-o-user-circle')
->url('/user/profile'),
])
->userMenuItems([
MenuItem::make('Profile')
->label('Edit Account')
->openUrlInNewTab()
->icon('heroicon-o-user-circle')
->url('/user/profile'),
])
PabloZagni
PabloZagniOP14mo ago
Yes, today I'm trying.
toeknee
toeknee14mo ago
Apply that to the panel configuration.

Did you find this page helpful?