Remove Manage Subscription from tenant menu

I implemented the billing functionality using laravel spark, is it possible to hide or remove the manage subscription in tenant menu I'm planning on moving it in my sidebar.
image.png
Solution
You have billing enabled, so

->tenantMenuItems([
            'billing' => MenuItem::make()->label('Manage subscription')->visible(false),
        ])


Should work
Was this page helpful?