Inbox for Internal Messaging

Filament 3
Also available in Filament 4/5 version

This project demonstrates how to add internal messaging functionality into Filament so users can send messages to each other and see their inboxes/outboxes.

24-inbox-internal-messaging

Get the Source Code:

Only This Example

$9

One-time payment

Full source code for Inbox for Internal Messaging
Downloadable ZIP file with the source code
Lifetime access to this example
GitHub Sign in with GitHub to buy

Sign in first, then complete your $9 checkout.

Best value — all 168 examples

FilamentExamples Membership

$99 /year
or
$199 lifetime
Access to code of all 168 examples
Future new examples and updates included
FilaCheck Pro package licence included
MCP server included
View membership plans

30-day money-back guarantee

How it works

Here are the things that we customized on top of the default Filament.

The main Resouce is called MessagesResource, but the Model is changed to the Topic Model.

protected static ?string $model = Topic::class;
 
public static function getEloquentQuery(): Builder
{
return Topic::query();
}

The has a default sorting by created_at in descending order.

Navigation and Model labels are changed.

protected static ?string $modelLabel = 'Message';
 
protected static ?string $navigationLabel = 'Inbox';

The messages table has three tabs for all messages, inbox, where the user sees new topics he received, and outbox, where the user sees topics he sent. The tabs are defined in the ListMessages class in the getTabs() method. Tabs have a count of how many...

The FULL tutorial is available after the purchase: in the Readme file of the official repository you would get invited to.