On this page
Configuration
to configure the plugin Dynamic Dashboard, you can pass the configuration to the plugin in adminPanelProvider
these all the available configuration, and their defaults values
1DynamicDashboardPlugin::make() 2 ->models([ 3 'Layout' => \LaraZeus\DynamicDashboard\Models\Layout::class, 4 'Columns' => \LaraZeus\DynamicDashboard\Models\Columns::class 5 ]) 6 7 ->uploadDisk('public') 8 ->uploadDirectory('layouts') 9 10 ->navigationGroupLabel('Dynamic Dashboard')11 12 ->hideLayoutResource()13 14 ->defaultLayout('new-page')