Faruk Nasir
Faruk Nasir
@Temian1 I believe at any given time, a subscriber can only have one main subscription(plan) at any point in time. I dont think this package has add-on plan subscription yet....
@pixsolution there isn't. But, you can easily build a query for that.
i'd do something like the following. ```php $models = Model::with('subscription.plan')->get(); ``` This will get all the subscribers with their subscription details and the plan of the subscription. I would also...