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
PabloZagni5mo 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 Koch5mo ago
You can't. It's a complete separate layout. You can use horizontal nav menu though since v3.
PabloZagni
PabloZagni5mo 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 Koch5mo ago
What exactly do you want to archieve? And what's the issue?
PabloZagni
PabloZagni5mo ago
I would like to use Jetstream user profile edit, and team management.
toeknee
toeknee5mo ago
Just build custom pages in Filament and clone the livewire page code from Jetstream
PabloZagni
PabloZagni5mo ago
Yes, but I neet to add it to the userMenuItems
toeknee
toeknee5mo 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
PabloZagni5mo ago
Yes, today I'm trying.
toeknee
toeknee5mo ago
Apply that to the panel configuration.