delia

Configuration

to configure the plugin Delia, you can pass the configuration to the plugin in adminPanelProvider

these all the available configuration, and their defaults values

1DeliaPlugin::make()
2 ->deliaModels([
3 'User' => config('auth.providers.users.model'),
4 'Bookmark' => \LaraZeus\Delia\Models\Bookmark::class,
5 ])
6 ->navigationGroupLabel('Delia')
7 ->hideResources([
8 BookmarkResource::class,
9 ])

Configuration File

use the file zeu-delia.php, to customize the global configuration.

to publish the configuration:

1php artisan vendor:publish --tag=zeus-delia-config

Render Hooks:

you can customize the render hooks in the config file:

1'render-hooks' => [
2 'list' => PanelsRenderHook::TOPBAR_END,
3 'bookmark_toggle_icon' => TablesRenderHook::TOOLBAR_TOGGLE_COLUMN_TRIGGER_AFTER,
4],