PHPackages                             ronanflavio/easychatl5 - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. ronanflavio/easychatl5

AbandonedArchivedLibrary[Utility &amp; Helpers](/categories/utility)

ronanflavio/easychatl5
======================

jQuery based chat for Laravel 5.1 with database storage and integration with your users table.

1.1.2(9y ago)81584[2 issues](https://github.com/ronanflavio/easychat_l5/issues)MITPHP

Since Nov 5Pushed 6y ago4 watchersCompare

[ Source](https://github.com/ronanflavio/easychat_l5)[ Packagist](https://packagist.org/packages/ronanflavio/easychatl5)[ RSS](/packages/ronanflavio-easychatl5/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (6)Used By (0)

Discontinued
------------

[](#discontinued)

This project was dicontinued.

Easychat for Laravel 5.x
========================

[](#easychat-for-laravel-5x)

Description
-----------

[](#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
-----------

[](#instalation)

Laravel 4.x
-----------

[](#laravel-4x)

See how to \[clicking here\] ().

Laravel 5.x
-----------

[](#laravel-5x)

To install Easychat, follow the steps bellow:

### 1)

[](#1)

```
composer require ronanflavio/easychatl5

```

### 2)

[](#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.

```
'providers' => [
  ...
  Ronanflavio\Easychat\EasychatServiceProvider::class,
];

```

In case of 5.0 version, do like this:

```
'providers' => [
  ...
  'Ronanflavio\Easychat\EasychatServiceProvider',
];

```

### 3)

[](#3)

You need to publish the package files. So, do the following:

```
php artisan vendor:publish

```

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)

[](#4)

To migrate the tables, do the following:

```
php artisan migrate --path=migrations/Ronanflavio/Easychat

```

Those tables are necessary for your chat. All of them are prefixed with `ec_` to distinguish it from your owner tables.

### 5)

[](#5)

Finally, insert into your `app\Http\Middleware\VerifyCsrfToken.php` file, the exception for easychat URIs, like this:

```
	protected $except = [
		 'easychat/*'
	];

```

Configuration
-------------

[](#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:

```
'users' => array(

        /**
         * Set the Model name:
         */

        'model' => 'App\User',

        /**
         * Set the Table name:
         */

        'table' => 'usuarios',

        /**
         * Set the Fields names:
         */

        'id'         => 'id',
        'name'       => 'nome',
        'photo'      => null,
        'created_at' => 'created_at',
        'updated_at' => 'updated_at',
    ),

```

Details
-------

[](#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.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~59 days

Total

5

Last Release

3600d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/77fe4bfadb131e0da2b0f919ab62c43ea27e78eff2042cc1e3ca830415fcc062?d=identicon)[ronanflavio](/maintainers/ronanflavio)

---

Top Contributors

[![ronanflavio](https://avatars.githubusercontent.com/u/8162211?v=4)](https://github.com/ronanflavio "ronanflavio (14 commits)")

### Embed Badge

![Health badge](/badges/ronanflavio-easychatl5/health.svg)

```
[![Health](https://phpackages.com/badges/ronanflavio-easychatl5/health.svg)](https://phpackages.com/packages/ronanflavio-easychatl5)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M683](/packages/barryvdh-laravel-ide-helper)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M157](/packages/orchestra-canvas)[illuminate/pipeline

The Illuminate Pipeline package.

9446.6M210](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10532.5M857](/packages/illuminate-pagination)[spatie/laravel-pjax

A pjax middleware for Laravel 5

513371.8k11](/packages/spatie-laravel-pjax)[spatie/laravel-mix-preload

Add preload and prefetch links based your Mix manifest

169176.0k2](/packages/spatie-laravel-mix-preload)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
