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

This package is not auto-updated.

Last update: 2024-04-28 00:29:23 UTC


README

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