Download the PHP package hamedmehryar/laravel-chat without Composer
On this page you can find all versions of the php package hamedmehryar/laravel-chat. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hamedmehryar/laravel-chat
More information about hamedmehryar/laravel-chat
Files in hamedmehryar/laravel-chat
Informations about the package laravel-chat
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.
All versions of laravel-chat with dependencies
illuminate/config Version ~5.0
illuminate/support Version ~5.0
illuminate/database Version ~5.0
nesbot/carbon Version ~1.0