PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Blocks

    Design blocks for your website

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Question By
Solved

Create free plan

Solved
francescomulassano1

Nov 29th, 2022 09:01 AM

always in my study to learn, I tried to create a free account on wave (local) and paddle sandbox. I can create an account that has a renewal every 99 years and zero euros but at the time of registration it still asks me for my credit card or paypal details. Is there a way to create a simple free profile together with the subscriptions?

bobbyiliev

Nov 29th, 2022 09:09 AM

Hi there,

You can disable that by:

  • Go to your Wave admin at /admin
  • Click on Settings
  • Click on Billing
  • Set the Require Credit Card Up Front to No
  • Click on Save Settings

Hope that this helps!

francescomulassano1

Nov 29th, 2022 10:49 AM

ok, but this disable the subscription plan..

bobbyiliev

Nov 29th, 2022 11:58 AM

I don't think that Paddle offers this as an option, according to their docs, they suggest the following:

Subscriptions with a trial period will require the customer to provide payment details at the checkout. To offer a non-card-present trial, simply manage the trial period in your platform and prompt the customer to complete the checkout when the trial expires.

Reference:

https://developer.paddle.com/guides/ZG9jOjI1MzU0MDQ1-trials

Can you clarify what is the use-case for this?

francescomulassano1

Nov 30th, 2022 01:14 AM

yes, think it like Medium.com where

  • Not logged user can read 3 article at week
  • Registerd user with FREE plan can read unlimited article with ADS, follow authors, comment, like...
  • Pro Reader, 1€ month unlimited article without ADS
  • Writer, 2€ month personal 'blog'
  • Pro Writer, 3€ month personal blog with custom subdomain
bobbyiliev

Nov 30th, 2022 02:50 AM

Best Answer

Hi there,

That would work perfectly well with the free account, you don't need the Paddle subscription to implement the logic.

  • For not logged in users:
@if (auth()->guest())
        do this 
@else
        do that
@endif
  • For logged in free users:
@if ( auth()->user()->role->name == 'free' )
        do this 
@else
        do that
@endif

You don't need a Paddle subscription in order to check if the user is on a free plan in the Wave app itself. You can create different roles locally and limit the users based on those roles.

Hope that this helps!

francescomulassano1

Nov 30th, 2022 02:53 AM

And i can show the free registration form if they go for the free account. all clear, thanks

Report
1
bobbyiliev

Nov 30th, 2022 03:00 AM

No problem at all! Happy to help!