Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork521
Simple user messaging package for Laravel
License
cmgmyr/laravel-messenger
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This package will allow you to add a full user messaging system into your Laravel application.
How are you using laravel-messenger?
- Multiple conversations per user
- Optionally loop in additional users with each new message
- View the last message for each thread available
- Returns either all messages in the system, all messages associated to the user, or all message associated to the user with new/unread messages
- Return the users unread message count easily
- Very flexible usage so you can implement your own access control
- Open threads (everyone can see everything)
- Group messaging (only participants can see their threads)
- One to one messaging (private or direct thread)
| Laravel | Messenger |
|---|---|
| 4.* | 1.* |
| 5.0-5.4 | <= 2.16.2 |
| 5.5+ | 2.* |
Installation instructions for Laravel 4 can befound here.
composer require cmgmyr/messengerOr place manually in composer.json:
"require": { "cmgmyr/messenger": "~2.0"}Run:
composer updateAdd the service provider toconfig/app.php underproviders:
'providers' => [Cmgmyr\Messenger\MessengerServiceProvider::class,],
Note: If you are using Laravel 5.5, this step is unnecessary. Laravel Messenger supportsPackage Discovery.
Publish config:
php artisan vendor:publish --provider="Cmgmyr\Messenger\MessengerServiceProvider" --tag="config"Update config file to reference your User Model:
config/messenger.phpCreate ausers table if you do not have one already. If you need one, the default Laravel migration will be satisfactory.
(Optional) Define names of database tables in package config file if you don't want to use default ones:
'messages_table' =>'messenger_messages','participants_table' =>'messenger_participants','threads_table' =>'messenger_threads',
Publish migrations:
php artisan vendor:publish --provider="Cmgmyr\Messenger\MessengerServiceProvider" --tag="migrations"Migrate your database:
php artisan migrateAdd the trait to your user model:
useCmgmyr\Messenger\Traits\Messagable;class Userextends Authenticatable {use Messagable;}
Please seeCONTRIBUTING for details.
Please reviewour security policy on how to report security vulnerabilities.
This package usedAndreasHeiberg/laravel-messenger as a starting point.
About
Simple user messaging package for Laravel
Topics
Resources
License
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.