On this page
Setup Delia
to install Delia, use the command:
1php artisan delia: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-delia-migrations
then, run the migration:
1php artisan migrate
Register Delia 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 DeliaPlugin::make()3])