Skip to main content

Waitlist

The waitlist feature allows you to collect email addresses from users who are interested in your product or service before it is launched. This is a great way to gauge interest and build a list of potential customers before you launch.

We've provided a basic UI for you to get started with. You can customize the UI by editing the following files:

  • resources/views/waitlist.blade.php
  • resources/views/livewire/waitlist-form.blade.php
  • app/LiveWire/WaitlistForm.php

Enabling the Waitlist

To enable the waitlist feature, you need to set the use_waitlist key to true in the filament-flow.php file.

config/filament-flow.php
'use_waitlist' => env( 'USE_WAITLIST', false ),

This will automatically:

  1. Turn on the waitlist feature
  2. Display the waitlist form on the homepage,
  3. Add the email addresses to the waitlist table in the database.
  4. Add a 'Waitlist' resource to the sidebar in the admin panel

Waitlist Page

The waitlist page template is provided by TailwindToolbox.com. You can customize the waitlist page by editing the resources/views/waitlist.blade.php file.