On this page
Configuration
to configure the plugin Wind, you can pass the configuration to the plugin in adminPanelProvider
these all the available configuration, and their defaults values
1WindPlugin::make() 2 ->windPrefix('contact-us') 3 ->windMiddleware(['web']) 4 ->defaultDepartmentId(1) 5 ->defaultStatus('NEW') 6 ->departmentResource() 7 ->windModels([ 8 'Department' => \LaraZeus\Wind\Models\Department::class, 9 'Letter' => \LaraZeus\Wind\Models\Letter::class,10 ])11 ->uploadDisk('public')12 ->uploadDirectory('logos')13 ->navigationGroupLabel('Wind'),