Download the PHP package ronanflavio/easychatl5 without Composer
On this page you can find all versions of the php package ronanflavio/easychatl5. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ronanflavio/easychatl5
More information about ronanflavio/easychatl5
Files in ronanflavio/easychatl5
Package easychatl5
Short Description jQuery based chat for Laravel 5.1 with database storage and integration with your users table.
License MIT
Informations about the package easychatl5
Discontinued
This project was dicontinued.
Easychat for Laravel 5.x
Description
Chat based in jQuery for Laravel 5.0, 5.1 and 5.2. It was made with storage into a MySQL database and integration with the users' table from your project.
Instalation
Laravel 4.x
See how to [clicking here] (https://github.com/kikonuy/easychat).
Laravel 5.x
To install Easychat, follow the steps bellow:
1)
2)
If you're using Laravel 5.1 or 5.2, insert this line at the bottom of your providers
list, into the config/app.php
file.
In case of 5.0 version, do like this:
3)
You need to publish the package files. So, do the following:
The configurations files will be placed at: config/packages/Ronanflavio/Easychat
.
The migrations files will be placed at your root project folder, in the directory: migrations/Ronanflavio/Easychat
.
And the assets, will be placed at: public/packages/Ronanflavio/Easychat
.
4)
To migrate the tables, do the following:
Those tables are necessary for your chat. All of them are prefixed with ec_
to distinguish it from your owner tables.
5)
Finally, insert into your app\Http\Middleware\VerifyCsrfToken.php
file, the exception for easychat URIs, like this:
Configuration
When the package publish is done, the files will be placed at the direcoty: config\packages\Ronanflavio\Easychat
.
Navigate to there and map your Models and database tables into the tables.php
file like the example bellow:
Details
The application is totally dependent of authenticate method from Laravel (Auth) and, of course, it's necessary that the user has been logged in into the system for it work.