hamedmehryar / laravel-chat
Chat feature for laravel
1.0.1
2015-12-26 11:34 UTC
Requires
- php: >=5.4.0
- illuminate/config: ~5.0
- illuminate/database: ~5.0
- illuminate/support: ~5.0
- nesbot/carbon: ~1.0
Requires (Dev)
- adamwathan/faktory: 0.3.*
- fabpot/php-cs-fixer: 1.0.*@dev
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2024-11-09 19:45:14 UTC
README
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.