Recharge method
hi, i need code this recharge method, starting in USD$5, increasing 5 dollars each step up to 100. in tow methods: once (product) and recurrent (subscription), both gives 30 days access to dashboard
ideas how to code it, thanks
Hi there!
At the moment Wave only supports subscription based plans, note time payments would need to be implemented separately.
For your usecase, what you could do is have different plans with different prices, that way the user could choose between the different plans which will give them access to the dashboard for longer periods. For example you could have 10 different plans:
- Plan 1 = $5 = 1 month access
- Plan 2 = $10 = 2 months access
- Plan 3 = $15 = 3 months access
And so on for each price that you need, and with the slide, you could just change the plan ID for the Paddle checkout. For one time payments the logic will need to be implemented separately.
Hope that this helps! Let me know how it goes.
Best,
Bobby
















Hi Bobby,
Hope you're well! I have the same need to have one-off payments. Since I'm aware Wave only supports Paddle subscription plans at the moment, if I were to add the support for Paddle Products too during signup, where would I start looking for in the Wave source code?
Thanks!
Hi there!
That would be in the SubscriptionController.php file.
Though this will require you to change quite a bit of the logic in there.
Maybe an easier approach would be to let the users register for an account first, and then once they've logged in, then you could add a separate controller and a route to handle the single product purchase options.
Hope that this helps!
















No problem at all! Good luck with your project!