Laravel Spark: Billing "All My Commands"

As I understand it, Laravel Spark has two billing modes.

The first is individual billing. In individual billing, each user account is responsible for registering and paying for their own service.

The second is team billing. In group billing, you can register all users in a separate team for scheduling.

If any of the above assumptions are incorrect, please let me know.

What I need / need to do can be called billing "All my commands" or "Command of commands". I need an administrative user to be able to create multiple commands with different users and manage all those users (for billing purposes) with a single subscription.

Is this possible with Laravel Spark?

If not, is there any known science on how to do this? Come up in as much detail as you want, but I'm just looking for broad strokes here and trying to duplicate work if it already exists.

+3


source to share


1 answer


Alan, In laracast, please suggest the following solution for your question:

Yes, it is possible and you can restrict it in three ways from the perspective owner account:

    ->maxCollaborators($max)
    ->maxTeams($max)
    ->maxTeamMembers($max) Users can create as many teams as they want (unless you limit it as mentioned above) and they can also join

      

teams of other people, if invited.



hope this helps!

+1


source







All Articles