Jul 4, 2019
0
Level 18
Unable to set up User Billing and Team Billing Together
I want my app to use User Billing along with Team Billing. But when I try something like that as per the documentation
Spark::plan('Pro', 'monthly-pro')
->price(20)
->features([
'Feature 1',
'Feature 2',
'Feature 3',
]);
Spark::teamPlan('Basic', 'prod_FN84FC3do7z1eZ')
->price(50)
->maxTeamMembers(2)
->features([
'First', 'Second', 'Third'
]);
Spark only acts upon User Billing and ignore the teamPlan. I want the user to pick either single or teams billing
Please or to participate in this conversation.