Nov 10, 2016
0
Level 1
Team modification
Hi there,
I'm developing a site with two different user types (Coach / Player). There should be different plans for both. Players can only join teams but not create and opposite for coaches.
Players which are invited should get an email and signup for free.
I was thinking the plans could look something like that:
Spark::plan('Pro', 'yearly-pro')
->price(50)
->yearly()
->coach()
->maxTeams(5)
->features([
'Feature 1',
'Feature 2',
'Feature 3',
]);
Does anyone know a workaround for that case?
Thanks guys :)
Please or to participate in this conversation.