Add logout navigationItem to sidebar

Hello !
I'm trying to add a navigation item on my sidebar to logout, I made this in my panel :
->navigationItems([
                NavigationItem::make('Déconnexion')
                    ->url('/logout')
                    ->icon('heroicon-o-arrow-left-start-on-rectangle')
                    ->sort(12)
            ])


but it's not the right method for logout and I can't link the Logout action because NavigationItem doesn't have something to do this
Was this page helpful?