Hello,
For the moment I have developed an application with billing via Stripe and it really works fine.
Some months later, I now ask myself what was really the best approach between creating the products and the prices either via the API or directly on the Stripe website.
Why I ask for this ?
An application is developed with some functionalities and it's quite impossible to handle in the same application all possibilities provided by Stripe.
So if a user creates products and prices directly on the Stripe website with some configuration that is not handled in the Laravel application, it could not work properly. But if the products and prices are created via the API, the user will have a form in the Laravel application and I can control the exact needed configuration.
But also I simply cannot prevent the user from creating products and prices directly on the Stripe website, even if the products and prices are created via the API.
So what is the best approach ?
Thanks for sharing your experience.
V