Level 73
@msr2406 There is a noProrate() method on the subscription actually.. Take a look here:
https://laravel.com/docs/master/billing#subscription-quantity
So you can call it as such:
$user->subscription()->noProrate();
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I want to create a Cashier Subscription specifying values for Stripe data: prorate, trial_end and billing_cycle_anchor.
I see I can use trialUntil() and anchorBillingCycleOn() when creating a subscription but how to set prorate to false? There is no noProrate() function in SubscriptionBuilder.
Can I pass Stripe data directly into the Subscription creation process via an options argument somewhere - or some other way?
@msr2406 There is a noProrate() method on the subscription actually.. Take a look here:
https://laravel.com/docs/master/billing#subscription-quantity
So you can call it as such:
$user->subscription()->noProrate();
Please or to participate in this conversation.