hamedmehryar / laravel-chat by hamedmehryar

Chat feature for laravel
954
24
6
Package Data
Maintainer Username: hamedmehryar
Maintainer Contact: hamed@netlinks.af (Hamed mehryar)
Package Create Date: 2015-11-08
Package Last Update: 2018-10-01
Language: PHP
License: MIT
Last Refreshed: 2024-05-08 03:11:57
Package Statistics
Total Downloads: 954
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 24
Total Watchers: 6
Total Forks: 8
Total Open Issues: 1

Laravel Chat

This package will allow you to add a full user messaging system into your Laravel application.

Features

  • Thread based conversation
  • Invite other users to the thread

Common uses

  • Open threads (everyone can see everything)
  • Group messaging (only participants can see their threads)
  • One to one messaging (private or direct thread)

Installation (Laravel 5.x) (installation in not recommended because this is a pre-release package)

In composer.json:

"require": {
    "hamedmehryar/laravel-chat" "0.0.0"
}

Run:

composer update

Add the service provider to config/app.php under providers:

'providers' => [
    Hamedmehryar\Chat\ChatServiceProvider::class,
]

Publish Assets

php artisan vendor:publish --provider="Hamedmehryar\Chat\ChatServiceProvider"

Update config file to reference your User Model:

config/chat.php

Migrate your database:

php artisan migrate

Add the trait to your user model:

use Hamedmehryar\Chat\Traits\Chatable;

class User extends Model {
	use Chatable;
}

Add smiley.css file to your page

<link rel="stylesheet" href="../path/to/your/public/hamedmehryar/chat/smiley.css" >

Note: These examples use the laravelcollective/html package that is no longer included in Laravel 5 out of the box. Make sure you require this dependency in your composer.json file if you intend to use the example files.

Credits

Special Thanks

This package used cmgmyr/laravel-messenger as a starting point.