User Menu to sidebar

Is it possible to move the user menu to the bottom of the sidebar without overriding the view blade?

So sticky position to the sidebar navigation, and on show, so settings and logout buttons directly, without clicking into the user menu.

Or would this be a case of disabling user menu then creating custom navigation actions?
Solution
            ->renderHook(
                PanelsRenderHook::SIDEBAR_FOOTER,
                fn (): View => view('filament-panels::components.user-menu', ['attributes' => new \Illuminate\View\ComponentAttributeBag])
            )


Technically.. works
Was this page helpful?