#pulley871_best-practices

1 messages ¡ Page 1 of 1 (latest)

bold flickerBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1242209080613933207

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

astral zinc
#

Hello, can you tell me more about what this subscription is doing? It sounds like you want it to cycle without taking a payment?
You can make a subscription with a $0 recurring price, but if you are doing that, it is often easier to just write something on your side that provisions access without checking the status of a Stripe object.

neat oasis
#

Yea. We were thinking of doing that, we are using laravel cashieer's package
So we may go the route of creating this active subscription without interacting with stripe.

#

I think what makes it difficult for us, is that there are so many pages of ours that contains information dervied from stripe, like their default payment method etc...

So it sounds it may be best to try to decouple everything from stripe, so that we can have the freedom to use without the need of stripe objects?

astral zinc
#

That's what I would go with, but you can do either. So a $0 subscription would be the alternative that uses a Stripe object so that you can just use your flows that retrieve one

neat oasis
#

Got ya! Thank you so much!