hanishkumar / chatapp
ChatApp is a PHP library designed to make it easy to consume and produce chat application
Installs: 117
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 1
Open Issues: 0
pkg:composer/hanishkumar/chatapp
Requires
- php: >=5.6.4
This package is not auto-updated.
Last update: 2025-10-12 07:39:11 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