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-11-11 15:21:13 |
Package Statistics | |
---|---|
Total Downloads: | 955 |
Monthly Downloads: | 1 |
Daily Downloads: | 1 |
Total Stars: | 24 |
Total Watchers: | 6 |
Total Forks: | 8 |
Total Open Issues: | 1 |
This package will allow you to add a full user messaging system into your Laravel application.
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.
This package used cmgmyr/laravel-messenger as a starting point.