๐Ÿ—๏ธInstallation

composer require tomatophp/filament-settings-hub

now you need to publish and migrate the settings table

php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="migrations"

after publishing and migrating the settings table please run this command

php artisan filament-settings-hub:install

finally, register the plugin on /app/Providers/Filament/AdminPanelProvider.php

->plugin(\TomatoPHP\FilamentSettingsHub\FilamentSettingsHubPlugin::make())

Last updated