Filament with Spark integration
I'm currently integrating Filament v3 with Laravel Spark for a multi-tenant application.
In the AppPanelProvider.php I have added
My issue is that I'm always being redirected to the billing portal. I do have a subscription for the organization (which is the tenant). I get a 'Your subscription has been started successfully.', as well as a way to 'change the subscription plan' as well as entries in the database subscription table.
The expected behaviour would be that in this case (with a subscription) it would simply allow me to go the the Filament backend of my application.
Any ideas?
In the AppPanelProvider.php I have added
->requiresTenantSubscription(), the document states that users will be redirected to the billing page if they don't have an active subscription.My issue is that I'm always being redirected to the billing portal. I do have a subscription for the organization (which is the tenant). I get a 'Your subscription has been started successfully.', as well as a way to 'change the subscription plan' as well as entries in the database subscription table.
The expected behaviour would be that in this case (with a subscription) it would simply allow me to go the the Filament backend of my application.
Any ideas?