Greeter Module
It's always nice to greet your users, so we've included the Filament Greeter module to help you do just that.
Enabling or Disabling the Greeter
To enable or disable the greeter, you need to set the filament-flow.greeter.enabled key to true or false in the filament-flow.php file.
config/filament-flow.php
'greeter' => [
'enabled' => (bool)env( 'GREETER_ENABLED', true ),
],
Customizing the Greeter
You can customize the greeter by editing the following files:
- app/Providers/Filament/AppPanelProvider.php
- config/filament-flow.php
config/filament-flow.php
'greeter' => [
'enabled' => (bool)env( 'GREETER_ENABLED', true ),
'content' => 'Welcome to FilamentFlow!',
],