Add a real-time chat system to your laravel 5 website/application in a few lines of code
Recently I have had a few projects that have required a chat feature, and I wanted to create a laravel package - so here it is!
You can see a demo and test the package at www.confer.work. The demo is limited to 19 concurrent users, and you will automatically be logged in if a user slot is available - otherwise you may have to wait for a slot to free up.
Everything you post in the demo will be saved under the test user you are logged in as, so please avoid rude language or sensitive information.
I will refresh the database every now and again to clear the test messages.
The project currently requires Pusher (php-server and javascript) to allow real-time chat messaging. I really recommend this service if you need to do anything real-time - it's fast, reliable and very easy to implement in your projects.
You can create a free sandbox account at pusher.com which lets you have 100,000 messages a day and 20 active users at one time. If you need higher limits they offer paid accounts at pretty decent prices.
Other requirements:
Require the package via composer:
composer require djb/confer
Publish the assets:
php artisan vendor:publish
Add the service provider DJB\Confer\ConferServiceProvider
to your config\app.php
Add the seed to your database seed caller (default is database\seeds\DatabaseSeeder.php
):
class DatabaseSeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
$this->call('ConferSeeder');
}
Migrate your database with the seeds in tow:
php artisan migrate --seed
Add the trait to your User model:
use DJB\Confer\Traits\CanConfer;
class User extends Model {
use CanConfer;
}
Link to the css file, and import the view partials in whichever pages you wish to have the chat on, or put it in your app/master file (if you are using one) to show on all pages:
<link href="https://github.com/dazzz1er/confer/blob/master/vendor/confer/css/confer.css" rel="stylesheet">
<link rel="stylesheet" href="https://github.com/dazzz1er/confer/blob/master//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
@include('confer::confer')
<script src="https://github.com/dazzz1er/confer/raw/master/js/jquery.min.js"></script>
<script src="https://github.com/dazzz1er/confer/raw/master/js/pusher.min.js"></script>
<script src="https://github.com/dazzz1er/confer/raw/master/js/moment.min.js"></script>
@include('confer::js')
There are a number of options in the confer.php config file which are quite self explanatory, but in short you can:
The avatar, loader and company avatar are all relative to your app's /public dir.
Your Pusher app details are not configured in the config file provided, they are instead expected to be provided in your config\services.php
file in the format:
'pusher' => [
'public' => 'public_key',
'secret' => 'secret_key',
'app_id' => 'app_id'
]
The package assumes you have a User model in the App namespace, and that this model has a name
attribute (hey, if you don't have one already, why not create one with a custom getter?) and an avatar
attribute - which is simply the filename of the avatar image file (for example avatar-dan.jpg
) which will be appended to your avatar_dir provided in the config file of the package to find your avatar.
There is an optional facebook messages type bar, which you can include in your project if you'd like that functionality.
Simply put @include('confer::barconversationlist')
inside a suitable containing element (like a dropdown li).
If you are using bootstrap this is what I have my bar view inside:
<li>
<a href="#" data-toggle="dropdown" class="dropdown-toggle" style="position: relative;" id="messages_open_icon"><i class="fa fa-btn fa-envelope"></i></a>
<ul class="dropdown-menu">
<li style="width: 400px; min-height: 40px;">
<ul id="messages_holder_in_bar">
@include('confer::barconversationlist')
</ul>
<!-- Messages -->
</li>
</ul>
</li>
Likely updates include adding mentions, sounds and changing conversation names after the initial setup.
What would you like to see?
If you use this package in your project it would mean the absolute world to me if you let me know! This is my first package, and my first piece of code shared so really... it's close to me. That said please feel free to contribute to the project - I think it has a solid foundation for expansion.