Download the PHP package muyaedward/messenger without Composer
On this page you can find all versions of the php package muyaedward/messenger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download muyaedward/messenger
More information about muyaedward/messenger
Files in muyaedward/messenger
Package messenger
Short Description Simple user messaging tool for Laravel
License MIT
Informations about the package messenger
Laravel Messenger
This package will allow you to add a full user messaging system into your Laravel application.
Features
- 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
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)
Or place manually in composer.json:
Run:
Add the service provider to config/app.php
under providers
:
Note: If you are using Laravel 5.5, this step is unnecessary. Laravel Messenger supports Package Discovery.
Publish config:
Update config file to reference your User Model:
Create a users
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:
Publish migrations:
Migrate your database:
Add the trait to your user model:
Contributing?
Please format your code before creating a pull-request. This will format all files as specified in .php_cs
:
Credits
- Chris Gmyr
- Anton Komarev
- All Contributors
Special Thanks
This package used cmgmyr/laravel-messenger as a starting point.
All versions of messenger with dependencies
illuminate/config Version ^5.5|^6.0|^6.1|^6.2|^6.3|^6.4|^6.5|^6.6
illuminate/support Version ^5.5|^6.0|^6.1|^6.2|^6.3|^6.4|^6.5|^6.6
illuminate/database Version ^5.5|^6.0|^6.1|^6.2|^6.3|^6.4|^6.5|^6.6
nesbot/carbon Version ^1.0|^2.0