Chat feature in laravel

Chat feature in laravel

Goto:

https://chatify.munafio.com/installation
composer require laravel/jetstream
php artisan jetstream:install livewire
php artisan jetstream:install livewire --teams
composer require munafio/chatify 
php artisan chatify:install 
php artisan migrate 
php artisan serve 
Goto this link: http://127.0.0.1:1000/chatify 
Goto pusher.com site and create an account

https://dashboard.pusher.com/accounts/sign_in
and create a chennel.
config/app.php

'aliases' => Facade::defaultAliases()->merge([
   'Chatify' => Chatify\Facades\ChatifyMessenger::class,
])->toArray(),
Goto to this link
https://dashboard.pusher.com/apps/1715818/settings
and enable client event
Goto this link and copy this type code and paste .env file
https://dashboard.pusher.com/apps/1715818/getting_started

PUSHER_APP_ID=1715818
PUSHER_APP_KEY=0fea9050ece815fabe84 
PUSHER_APP_SECRET=10ba5f7db1f61fa950c5
PUSHER_POST=443
PUSHER_SCHEME=https
PUSHER_APP_CLUSTER=ap2

 

 

 

Leave a Reply