hanishkumar / chatapp by hanishkumar

ChatApp is a PHP library designed to make it easy to consume and produce chat application
113
2
0
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-06-14 03:03:10
Package Statistics
Total Downloads: 113
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 2
Total Watchers: 0
Total Forks: 1
Total Open Issues: 0

Laravel Chat Application with EMOJI Support

Latest Stable Version Total Downloads Latest Unstable Version License

###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