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:
to check your version use:
composer show lara-zeus/wind
On this page
Configuration
to publish the config file run the command:
1php 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:
1 2return [ 3 /** 4 * allows you to create multiple departments to receive the messages from your website. 5 */ 6 'enableDepartments' => true, 7 8 /** 9 * you can set a default department to receive all messages, if the user didn't chose one10 */11 'defaultDepartmentId' => 1,12 13 /**14 * you can use the default layout as a starting point for your blog.15 * however, if you're already using your own component, just set the path here16 */17 'layout' => 'zeus::components.app',18 19 /**20 * set the default upload options for departments logo21 */22 'uploads' => [23 'disk' => 'public',24 'directory' => 'logos',25 ],26 27 /**28 * this will be setup the default seo site title. read more about it in 'laravel-seo'29 */30 'site_title' => config('app.name', 'Laravel').' | '.'Contact Us',31 32 /**33 * this will be setup the default seo site description. read more about it in 'laravel-seo'34 */35 'site_description' => config('app.name', 'Laravel').' Contact Us',36 37 /**38 * this will be setup the default seo site color theme. read more about it in 'laravel-seo'39 */40 'color' => '#F5F5F4',41 42 /**43 * set the default status that all messages will have when received44 */45 'default_status' => 'NEW',46 47 /**48 * Navigation Group Label49 */50 'navigation_group_label' => 'wind',51];