Do subscriptions automatically renew? #46
-
Hi Lucas. For example this given subscription: $plan = Plan::create([
'name' => 'gold',
'periodicity_type' => PeriodicityType::Month,
'periodicity' => 1,
'grace_days' => 7,
]);
$user->subscribeTo($plan); After 30 days does the application need to manually call |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey! Thanks for bringing up this question, Iago! The subscriptions currently do not renew. The idea is that you have to periodically call the |
Beta Was this translation helpful? Give feedback.
Hey! Thanks for bringing up this question, Iago! The subscriptions currently do not renew. The idea is that you have to periodically call the
renew()
method to grant your users access to their features. 🤘