Level 3
Like this?
Spark::plan('Individual', 'plan1')
->price(9.99)
->yearly() // yearly
->features([
'Single User', 'Second', 'Third'
]);
Spark::teamPlan('Institute-Tier-1', 'plan2')
->price(499)
->yearly()
->maxTeams(1)
->maxTeamMembers(50) // max seats
->features([
'Up to 100 seats', 'Second', 'Third'
]);
1 like