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

rameezisrar's avatar

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

0 likes
0 replies

Please or to participate in this conversation.