PHPackages                             qalainau/filament-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. qalainau/filament-inbox

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

qalainau/filament-inbox
=======================

Email-like inbox messaging plugin for Filament v5 — threads, starring, trash, forwarding, read receipts, and multi-tenancy out of the box.

v1.0.0(1mo ago)171.2k↓44.4%8MITPHPPHP ^8.2CI failing

Since Apr 24Pushed 6d agoCompare

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

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

Filament Inbox
==============

[](#filament-inbox)

[![CI](https://github.com/qalainau/filament-inbox/actions/workflows/ci.yml/badge.svg)](https://github.com/qalainau/filament-inbox/actions/workflows/ci.yml)[![Latest Version on Packagist](https://camo.githubusercontent.com/db86d19a2d598d0f0e8e2ca762b3fa6c3aecccd03448b2e90bae66f56d04e6a6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f71616c61696e61752f66696c616d656e742d696e626f782e737667)](https://packagist.org/packages/qalainau/filament-inbox)[![Total Downloads](https://camo.githubusercontent.com/0fba7457129802f603175fe7eb852755eac34b4f97609ac3c49b861b5d71bd7a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f71616c61696e61752f66696c616d656e742d696e626f782e737667)](https://packagist.org/packages/qalainau/filament-inbox)

Email-like inbox messaging plugin for [Filament v5](https://filamentphp.com). Add a complete internal messaging system to your admin panel — inbox, sent, starred, trash, threading, forwarding, read receipts, and more.

Screenshots
-----------

[](#screenshots)

InboxThread View[![Inbox](docs/images/inbox.png)](docs/images/inbox.png)[![Thread](docs/images/thread.png)](docs/images/thread.png)Compose MessageSent Messages[![Compose](docs/images/compose.png)](docs/images/compose.png)[![Sent](docs/images/sent.png)](docs/images/sent.png)Features
--------

[](#features)

- **Inbox, Sent, Starred, Trash** — Full Gmail-style navigation
- **Message Threading** — Reply and Reply All with threaded conversations
- **Message Forwarding** — Forward messages with original headers
- **Read Receipts** — Per-recipient read tracking with status indicators
- **Star Messages** — Mark important messages for quick access
- **Rich Text Editor** — Compose messages with formatting and file attachments
- **Bulk Actions** — Mark as read, move to trash in batch
- **Search &amp; Filters** — Filter by sender, unread, starred
- **Database Notifications** — Filament native notifications on new messages
- **Stats Widget** — Unread, total, and starred message counts
- **Dark Mode** — Full dark mode support
- **Multi-tenancy** — Filament native tenant scoping
- **Configurable User Model** — Works with any authenticatable model
- **Laravel Events** — Hook into MessageSent, MessageRead, MessageStarred, MessageTrashed, MessageRestored, MessageForwarded
- **Test Factories** — Message and MessageRecipient factories included
- **i18n** — English, Japanese, Spanish, French, Portuguese (BR), Chinese (Simplified), Korean, German

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 12+
- Filament v5

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

[](#installation)

```
composer require qalainau/filament-inbox
```

Run the notifications migration (required for Filament database notifications):

```
php artisan make:notifications-table
php artisan migrate
```

Add the `HasInbox` trait to your User model:

```
use FilamentInbox\Concerns\HasInbox;

class User extends Authenticatable
{
    use HasInbox;
}
```

Register the plugin in your Filament panel. `databaseNotifications()` is required to enable Filament's notification system:

```
use FilamentInbox\FilamentInboxPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->databaseNotifications()
        ->plugin(FilamentInboxPlugin::make());
}
```

> **Note:** `databaseNotifications()` requires the `notifications` table. If you see an error about a missing table, run `php artisan make:notifications-table && php artisan migrate`.

Configuration
-------------

[](#configuration)

Publish the config file:

```
php artisan vendor:publish --tag=filament-inbox-config
```

```
// config/filament-inbox.php
return [
    // Custom user model (defaults to auth provider model)
    'user_model' => null,

    // Custom users table name (auto-detected from model)
    'users_table' => null,

    // Tenant-users relationship method on tenant model
    // Auto-detects 'members' or 'users' if null
    'tenant_users_relationship' => null,
];
```

Multi-tenancy
-------------

[](#multi-tenancy)

Filament Inbox works with Filament's built-in tenancy. When tenancy is active:

- Messages are scoped to the current tenant
- Recipient options are limited to tenant members
- Tenant is automatically attached to new messages

No additional configuration is needed if your tenant model has a `members()` or `users()` relationship.

Events
------

[](#events)

Listen to messaging events in your `EventServiceProvider` or with `Event::listen()`:

EventDispatched When`MessageSent`A message or reply is sent`MessageRead`A message is marked as read`MessageStarred`A message is starred or unstarred`MessageTrashed`A message is moved to trash`MessageRestored`A message is restored from trash`MessageForwarded`A message is forwardedTesting
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

49

—

FairBetter than 94% of packages

Maintenance95

Actively maintained with recent releases

Popularity32

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 67.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

46d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8680efcea0de29a5992da943fd048e5fe313832f65c4ed0a45d86efb1969adc0?d=identicon)[qalainau](/maintainers/qalainau)

---

Top Contributors

[![qalainau](https://avatars.githubusercontent.com/u/238779?v=4)](https://github.com/qalainau "qalainau (19 commits)")[![Cordina90](https://avatars.githubusercontent.com/u/22914524?v=4)](https://github.com/Cordina90 "Cordina90 (8 commits)")[![mohammedJalal99](https://avatars.githubusercontent.com/u/166988441?v=4)](https://github.com/mohammedJalal99 "mohammedJalal99 (1 commits)")

---

Tags

laravellivewiremessagingfilamentfilament-plugininbox

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/qalainau-filament-inbox/health.svg)

```
[![Health](https://phpackages.com/badges/qalainau-filament-inbox/health.svg)](https://phpackages.com/packages/qalainau-filament-inbox)
```

###  Alternatives

[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

208175.5k8](/packages/bezhansalleh-filament-google-analytics)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3913.7k](/packages/rawilk-profile-filament-plugin)[wsmallnews/filament-nestedset

Filament nestedset tree builder powered by kalnoy/nestedset with Filament v4 and v5 support

196.5k14](/packages/wsmallnews-filament-nestedset)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

127173.7k3](/packages/dotswan-filament-map-picker)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12351.0k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9939.0k](/packages/aymanalhattami-filament-context-menu)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
