Package Data | |
---|---|
Maintainer Username: | erickz |
Maintainer Contact: | erickcmiguel@gmail.com (Erick Carvalho) |
Package Create Date: | 2016-08-08 |
Package Last Update: | 2016-08-09 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-01-25 15:16:47 |
Package Statistics | |
---|---|
Total Downloads: | 13 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 0 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This package will allow you to add a full user messaging system into your Laravel application.
How are you using laravel-messenger?
In composer.json:
"require": {
"erickz/messenger": "dev-master"
}
Run:
composer update
Add the service provider to app/config/app.php
under providers
:
'providers' => [
'Cmgmyr\Messenger\MessengerServiceProvider'
]
Add the trait to your user model:
use Cmgmyr\Messenger\Traits\Messagable;
class User extends Eloquent {
use Messagable;
}
Create a users
table if you do not have one already. If you need one, simply use this example as a starting point, then migrate.
Migrate your database:
php artisan migrate --package=cmgmyr/messenger
Move and alter the config file (optional):
php artisan config:publish cmgmyr/messenger
Please format your code before creating a pull-request:
vendor/bin/php-cs-fixer fix --level psr2 .
This package used AndreasHeiberg/laravel-messenger as a starting point.