Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

obs's avatar
Level 3

Billing: Team and individual plans

I was wondering if it's possible to have team plans and plans for individuals at the same time. I activated team billing and it seems like, everything is adjusted for teams now. I would like to have the possibility to create teams (but don't force user to create one, if they don't need it), and then use specific plans for that, but also plans for individuals. Is this possible?

0 likes
1 reply
ilabutk's avatar
ilabutk
Best Answer
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

Please or to participate in this conversation.