variety of premium plugins

Learn More

wind

you are reading the documentation for version v2 our latest version is v3 make sure to select the correct version.
to check your version use: composer show lara-zeus/wind

On this page

Configuration

to publish the config file run the command:

php artisan vendor:publish --tag=zeus-wind-config

you can pass --force option to force publishing the config file

the config file will contain the following:

 
return [
/**
* allows you to create multiple departments to receive the messages from your website.
*/
'enableDepartments' => true,
 
/**
* you can set a default department to receive all messages, if the user didn't chose one
*/
'defaultDepartmentId' => 1,
 
/**
* you can use the default layout as a starting point for your blog.
* however, if you're already using your own component, just set the path here
*/
'layout' => 'zeus::components.app',
 
/**
* set the default upload options for departments logo
*/
'uploads' => [
'disk' => 'public',
'directory' => 'logos',
],
 
/**
* this will be setup the default seo site title. read more about it in 'laravel-seo'
*/
'site_title' => config('app.name', 'Laravel').' | '.'Contact Us',
 
/**
* this will be setup the default seo site description. read more about it in 'laravel-seo'
*/
'site_description' => config('app.name', 'Laravel').' Contact Us',
 
/**
* this will be setup the default seo site color theme. read more about it in 'laravel-seo'
*/
'color' => '#F5F5F4',
 
/**
* set the default status that all messages will have when received
*/
'default_status' => 'NEW',
 
/**
* Navigation Group Label
*/
'navigation_group_label' => 'wind',
];