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.
Solution:Jump to solution
You have billing enabled, so
```php
->tenantMenuItems([
'billing' => MenuItem::make()->label('Manage subscription')->visible(false),...
3 Replies
up
Solution
You have billing enabled, so
Should work
Thank you sir