Get users to billing page right after they picked a pricing plan
Once the user makes a choice from the pricing blade they may be ready to fill out billing/checkout. But, if I am not mistaken, current flow is getting them to sign-in, click sign-up, and then ask them about the plan again.
If indeed so, I wonder is there any easier/shorter way to change this (or would one have to flow planid/cycle through pricing to an overridden from auth register page, add pending plan to DB and change subscription blade to handle and redirect to billing checkout etc)?
Any help/suggestions/insights appreciated.
Hey!
Yes indeed it is not possible out of the box at the moment.
But one option is to use a similar approach as we had in Wave v2:
- Allow the user to subscribe directly before signing up
- In the checkout controller handle the user registration as we used to have here:
resources/views/checkout.blade.php
- On the frontend this used to be handled by:
wave/resources/views/checkout.blade.php
Hope that this helps!