Reputation: 1046
I am making a SASS product with two subscription plans. Each plan has credits against them. Say, basic
has 100 credits and pro
has 200 credits. If in the middle 0f the month someone with a basic plan exhausts his 100 credits how do I charge him using stripe subscription(laravel cashier)?
Upvotes: 0
Views: 102
Reputation: 623
You can notify the customer that their usage ran out and offer an upgrade. You can then update the Price ID in the Subscription. You can read more here: https://stripe.com/docs/billing/subscriptions/upgrade-downgrade
Upvotes: 0