On this page
Setup Replies
to install Replies, use the command:
1php artisan replies:install
The install command will publish the migrations and the necessary assets and the config file.
Migrations
if you're using multi tenants, publish the migrations files, and add the tenant columns
1php artisan vendor:publish --tag=zeus-replies-migrations
then, run the migration:
1php artisan migrate
Register Replies with Filament:
To set up the plugin with filament, you need to add it to your panel provider; The default one is adminPanelProvider
1->plugins([2 RepliesPlugin::make()3])