Public Facing Pages
FilamentFlow provides a few public facing pages that you can customize to fit your application's needs. These pages include:
- Welcome Page
- Waitlist Page
- Privacy Policy
- Terms of Service
These pages are located in the resources/views
directory and can be customized to fit your needs. You can also customize the layout used for these pages by editing the resources/views/layouts/public.blade.php
file.
Routes
There's nothing special here. No custom controllers, nothing to extend, just plain old Laravel routes. You can find the routes for these pages in the routes/web.php
file.
routes/web.php
Route::get('/', function () {
if( config( 'filament-flow.use_waitlist' ) )
{
return view( 'waitlist' );
}
return view('welcome');
})->name( 'home' );
Route::get('/privacy', function () {
return view('privacy');
})->name( 'privacy' );
Route::get( '/terms-of-service', function() {
return view( 'terms-of-service' );
})->name( 'terms-of-service' );
Packages Used
FilamentFlow uses the following packages to provide the public facing pages and assets, none of which are required to use FilamentFlow: