PHPackages                             multicaret/laravel-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. multicaret/laravel-inbox

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

multicaret/laravel-inbox
========================

Laravel messages and inbox system

8.0.0(4y ago)30962↓50%9[2 issues](https://github.com/multicaret/laravel-inbox/issues)PHPPHP &gt;=7.2.5

Since Jul 3Pushed 4y ago4 watchersCompare

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

READMEChangelog (4)Dependencies (2)Versions (7)Used By (0)

Laravel Inbox
=============

[](#laravel-inbox)

Internal messages between users in Laravel. Create an inbox system, in app messages, between users easily.

[![Latest Version](https://camo.githubusercontent.com/6fbd2891258997134b8a5786869b7b4caf74d5b496bbe8d3a0ce2cf2682a5207/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6d756c746963617265742f6c61726176656c2d696e626f782e7376673f7374796c653d666c61742d737175617265)](https://github.com/multicaret/laravel-inbox/releases)[![Total Downloads](https://camo.githubusercontent.com/4b0f0ffb5ece3ca50dd7d950739251364153a5a77f0f4e17a8501d091f545e5a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d756c746963617265742f6c61726176656c2d696e626f782e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/multicaret/laravel-inbox)[![License](https://camo.githubusercontent.com/f2db968ff55b9244e08cfdcba2a3d6c40c5725a12053c77825359dc3a9867fe5/68747470733a2f2f706f7365722e707567782e6f72672f6d756c746963617265742f6c61726176656c2d696e626f782f6c6963656e73652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/multicaret/laravel-inbox)

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

[](#installation)

This package can be installed through Composer.

```
composer require multicaret/laravel-inbox
```

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

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

You can publish the config-file with:

```
php artisan vendor:publish --provider="Multicaret\Inbox\InboxServiceProvider" --tag="config"
```

This is the contents of the published config file:

```
