Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Simple user messaging package for Laravel (4 & 5)

License

NotificationsYou must be signed in to change notification settings

goodnesskay/laravel-messenger

 
 

Repository files navigation

Build StatusScrutinizerScrutinizer CoverageLatest VersionTotal DownloadsSoftware LicenseStories in ReadyGet help on Codementor

Laravel Messenger

This package will allow you to add a full user messaging system into your Laravel application.

Leave some feedback

How are you using laravel-messenger?

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 acess 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 4.x)

Installation instructions for Laravel 4 can befound here.

Installation (Laravel 5.x)

In composer.json:

"require": {    "cmgmyr/messenger": "~2.0"}

Run:

composer update

Add the service provider toconfig/app.php underproviders:

'providers' => [    Cmgmyr\Messenger\MessengerServiceProvider::class,]

Publish config:

php artisan vendor:publish --provider="Cmgmyr\Messenger\MessengerServiceProvider" --tag="config"

Update config file to reference your User Model:

config/messenger.php

Create ausers table if you do not have one already. If you need one, simply usethis example as a starting point, then migrate.

(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 migrate

Add the trait to your user model:

use Cmgmyr\Messenger\Traits\Messagable;class User extends Model {    use Messagable;}

Examples

Note: These examples use thelaravelcollective/html package that is no longer included in Laravel 5 out of the box. Make sure you require this dependency in yourcomposer.json file if you intend to use the example files.

Example Projects

Contributing?

Please format your code before creating a pull-request. This will format all files as specified in.php_cs:

vendor/bin/php-cs-fixer fix .

Security

If you discover any security related issues, please emailChris Gmyr instead of using the issue tracker.

Credits

Special Thanks

This package usedAndreasHeiberg/laravel-messenger as a starting point.

About

Simple user messaging package for Laravel (4 & 5)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP91.0%
  • HTML9.0%

[8]ページ先頭

©2009-2025 Movatter.jp