hanishkumar / chatapp
ChatApp is a PHP library designed to make it easy to consume and produce chat application
1.3
2017-05-20 11:39 UTC
Requires
- php: >=5.6.4
This package is not auto-updated.
Last update: 2024-11-10 03:05:27 UTC
README
###Installing
composer require hanishkumar/chatapp
Add to config/app.php the following line to the 'providers' array:
Hanish\ChatApp\ChatAppServiceProvider::class,
Publish Migrations
php artisan migrate
Publish Asserts To Public Folder to install basic theme for chat
php artisan vendor:publish
To Include ChatBox In Your Master Page Just Add after all scripts at end
@if(!empty(Auth::user()->id)) @include('chat::directChat') @endif