#jahirjje - subscription discounts
1 messages · Page 1 of 1 (latest)
I am using Laravel with cashier, I create subscriptions when creating a user in my system and I apply a 7-day trial
I am considering allowing the user to upgrade their subscription between monthly and yearly at any time, however I would like to know if it is possible to add a coupon at that time, or can you only add a coupon the first time?
The Stripe API supports adding a coupon to a subscription at any time, creation or a later update.
I don't know what Laravel supports for subscription updates, though. You'd need to review their docs or reach out to the vendor/community for help with Laravel support specifically.
Excellent, 2 more questions, what is the behavior of adding a coupon as an update, what is the behavior when making an update between monthly and annual plan? Is the payment made immediately, or is it made at the end of the period?
Hi @near osprey! Stepping in for @valid nexus as they need to step away. Give a read through: https://stripe.com/docs/billing/subscriptions/upgrade-downgrade.
That explains how these updates behave
Coupons will apply to the upcoming invoice
So it depends on how you make the update
Amazing, I'll take a look, thank you very much!