Hello, we have multiple billable model in our application and I have canceled a subscription on a billable model through tinker by running $user->subscription('default')->cancelNowAndInvoice(). But the issue I am facing is that whenever I check the model's subscription it returns true. The subscription is canceled for sure as I have checked that through stripe dashboard and stripe cli. I am assuming that the trial period on the subscription is causing the issue. Do you have any suggestions for me?
#`$user->subscribed('default')` returning `true`
2 messages · Page 1 of 1 (latest)
Subscriptions are loaded in memory. You’ll need to refresh the relations on the user to get the latest status.