Package Data | |
---|---|
Maintainer Username: | hanishkumar |
Maintainer Contact: | info@hanishkumar.com (Hanish Kumar) |
Package Create Date: | 2017-05-20 |
Package Last Update: | 2017-05-20 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:07:04 |
Package Statistics | |
---|---|
Total Downloads: | 114 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 0 |
Total Forks: | 1 |
Total Open Issues: | 0 |
###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