Configurations
You can find package's configuration file at config/chatify.php
in your application, and will find the following properties that you can modify inside it:
Display Name
This value is the name for the messenger displayed in the UI
Storage Disk
The disk on which to store uploaded files and derived images by default. More details
Routes' Configurations
This value is package's routes' configurations
prefix
is the prefix of the routes in this package, so you can access the messenger from this value by going to/chatify
.middleware
is the middleware array applied on the routes of this package.namespace
is the routes' controllers namespace.
API Routes'
Pusher configurations
From here you can change pusher's configurations,
User Avatar
This is user's avatar configurations
folder
is the default folder name located in the storage to store users' avatars in.default
is the default user avatar image name, before uploading a new one.
Gravatar
In this version (v1.4.x +) we add support for Gravatar, so now you can use he default user avatar which is by default, or enable Gravatar to use it over the default
enabled
set totrue
if you want to enable Gravatar over the default user avatar.image_size
the size of user avatar generated from Gravatar.imageset
Default imageset to use from the options bellow:404
mp
identicon
(default)monsterid
wavatar
Attachments
This is attachments configurations
folder
is the default folder name located in the storage to store attachments in.download_route_name
is name of the route to download the attachments.allowed_images
is the default allowed images to be uploaded.allowed_files
is the default allowed files to be uploaded.`max_upload_size` is the max file size allowed to be uploaded in the backend (e.g. message attachment, user avatar..).
Messenger Colors
From the colors
property you can set messenger's colors that users can change from the settings of their profile.
By default, there are 10
default colors as above.
Last updated