PHPackages                             digitlimit/inbox - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. digitlimit/inbox

ActiveLibrary[Admin Panels](/categories/admin)

digitlimit/inbox
================

Laravel messages and inbox system

v1.0.0(2y ago)141PHP

Since May 21Pushed 1y ago1 watchersCompare

[ Source](https://github.com/digitlimit/inbox)[ Packagist](https://packagist.org/packages/digitlimit/inbox)[ RSS](/packages/digitlimit-inbox/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

laravel-inbox
=============

[](#laravel-inbox)

This Laravel package will help you to create an inbox system and send messages between users easily. This package was forked from .

Changes
-------

[](#changes)

- Fix Inbox listing issue, Inbox now only list received massages
- Add default avatar from
- Fix labels on Inbox &amp; Sent Item tabs
- Add separate route and controller for sent items

Installation
------------

[](#installation)

This package can be installed through Composer.

```
composer require digitlimit/laravel-inbox
```

If you don't use Laravel 5.5+ you have to add the service provider manually

```
// config/app.php
'providers' => [
    ...
    Digitlimit\Inbox\InboxServiceProvider::class,
    ...
];
```

You can publish migrations, config, views, lang files

```
php artisan vendor:publish --provider="Digitlimit\Inbox\InboxServiceProvider"
```

This is the contents of the published config file:

```
