# Plan Subscription Model
# Create a Subscription
You can subscribe a user (or any model correctly traited) to a plan by using the newSubscription()
function available
in the HasSubscriptions
trait. First, retrieve an instance of your subscriber model, which typically will be your user
model and an instance of the plan your user is subscribing to. Once you have retrieved the model instance, you may use
the newSubscription
method to create the model's subscription.
$user = User::find(1);
$plan = Plan::find(1);
$user->newSubscription('main', $plan, 'Main subscription');
The first argument passed to newSubscription
method should be the identifier tag of the subscription. If your
application offer a single subscription, you might call this main
or primary
. The second argument is the plan
instance your user is subscribing to and the third argument is a human readable name for your subscription.
# Change its Plan
You can change subscription plan easily as follows:
$plan = Plan::find(2);
$subscription = PlanSubscription::find(1);
// Change subscription plan
$subscription->changePlan($plan);
If both plans (current and new plan) have the same billing frequency (e.g., invoice_period
and invoice_interval
) the
subscription will retain the same billing dates. If the plans don't have the same billing frequency, the subscription
will have the new plan billing frequency, starting on the day of the change.
Subscription usage data will be cleared by default, unless false
is given as second parameter.
Also, if the new plan has a trial period, and it's a new subscription, the trial period will be applied.
# Subscriber's subscriptions
Retrieve subscriptions of subscriber.
// Get user subscriptions
$user->subscriptions;
// Get user active subscriptions
$user->activeSubscriptions;
# Subscription Feature Usage
There are multiple ways to determine the usage and ability of a particular feature in the subscriber's subscription, the
most common one is canUseFeature
:
The canUseFeature
method returns true
or false
depending on multiple factors:
- Subscription has not ended.
- Feature is enabled.
- Feature value isn't
0
/false
/NULL
. - Or feature has remaining uses available.
$user->subscription('main')->canUseFeature('social_profiles');
Other feature methods on the user subscription instance are:
getFeatureUsage
: returns how many times the user has used a particular feature.getFeatureRemainings
: returns available uses for a particular feature.getFeatureValue
: returns the feature value.
All methods share the same signature: e.g.
$user->subscription('main')->getFeatureUsage('social_profiles');
.
# Record Feature Usage
In order to effectively use the ability methods you will need to keep track of every usage of each feature (or at least
those that require it). You may use the recordFeatureUsage
method available through the user subscription()
method:
$user->subscription('main')->recordFeatureUsage('social_profiles');
The recordFeatureUsage
method accepts 3 parameters: the first one is the feature's tag, the second one is the quantity
of uses to add (default is 1
), and the third one indicates if the addition should be incremental (default behavior),
when disabled the usage will be override by the quantity provided. E.g.:
// Increment by 1
$user->subscription('main')->recordFeatureUsage('social_profiles', 1);
// Override with 3
$user->subscription('main')->recordFeatureUsage('social_profiles', 3, false);
# Reduce Feature Usage
Reducing the feature usage is almost the same as incrementing it. Here we only substract a given quantity (default
is 1
) to the actual usage:
$user->subscription('main')->reduceFeatureUsage('social_profiles', 2);
# Clear the Subscription Usage data
$user->subscription('main')->usage()->delete();
# Check Subscription status
For a subscription to be considered active one of the following must be true
:
- Subscription has an active trial.
- Subscription
ends_at
is in the future.
$user->isSubscribedTo($planId);
Alternatively you can use the following methods available in the subscription model:
$user->subscription('main')->isActive();
$user->subscription('main')->isCanceled();
$user->subscription('main')->hasEnded();
$user->subscription('main')->isOnTrial();
Canceled subscriptions with an active trial or
ends_at
in the future are considered active.
# Renew a Subscription
To renew a subscription you may use the renew
method available in the subscription model. This will set a
new ends_at
date based on the selected plan and will clear the usage data of the subscription.
$user->subscription('main')->renew();
Canceled subscriptions with an ended period can't be renewed.
# Cancel a Subscription
To cancel a subscription, simply use the cancel
method on the user's subscription:
$user->subscription('main')->cancel();
By default the subscription will remain active until the end of the period, you may pass true
to end the
subscription immediately:
$user->subscription('main')->cancel(true);
# Scopes
// Get subscriptions by plan
$subscriptions = PlanSubscription::byPlanId($planId)->get();
// Get bookings of the given user
$user = \App\Models\User::find(1);
$bookingsOfUser = PlanSubscription::ofSubscriber($user)->get();
// Get subscriptions with trial ending in 3 days
$subscriptions = PlanSubscription::findEndingTrial(3)->get();
// Get subscriptions with ended trial
$subscriptions = PlanSubscription::findEndedTrial()->get();
// Get subscriptions with period ending in 3 days
$subscriptions = PlanSubscription::findEndingPeriod(3)->get();
// Get subscriptions with ended period
$subscriptions = PlanSubscription::findEndedPeriod()->get();