No worries, feels strange, in a good way, to be helping someone so soon on my journey ;)
I just read the docs and it looks like the user and team billing is really easy, you literally just declare the plans you want in the booted method of app/Providers/SparkServiceProvider
e.g.
Spark::plan('Pro', 'monthly-pro')
->price(20)
->features([
'Feature 1',
'Feature 2',
'Feature 3',
]);
Spark::teamPlan('Basic', 'team-basic')
->price(10)
->features([
'First', 'Second', 'Third'
]);
I do think the docs are confusing though, because it says:
"If your application offers team plans instead of individual user plans, you should generate your application using the --team-billing switch. This will generate a SparkServiceProvider stub that defines team plans instead of individual plans:"
'instead of' being the confusing bit as this implies that by enabling team billing you are disabling user billing.
edit: I just re-read this couple of times and I think it means the stubs generated will be team oriented - that's all!!
We will just have to try it I guess, I won't get to this for a little while though :)