Filament Messages is a powerful messaging plugin for FilamentPHP. It provides an easy-to-use interface for real-time messaging within Filament admin panels.
raseldev99/filament-messages is a Laravel package for filament messages is a powerful messaging plugin for filamentphp. it provides an easy-to-use interface for real-time messaging within filament admin panels..
It currently has 6 GitHub stars and 242 downloads on Packagist (latest version 1.0.0).
Install it with composer require raseldev99/filament-messages.
Discover more Laravel packages by raseldev99
or browse all Laravel packages to compare alternatives.
Last updated
Filament Messages is a powerful messaging plugin for FilamentPHP. It provides an easy-to-use interface for real-time messaging within Filament admin panels.

Key Features:
Getting Started
Prerequisite
User Model
Admin Panel Provider
Plugins Used
Acknowledgments
Support
You can install the package via Composer:
composer require raseldev99/filament-messages
Run this command to install all migrations and configurations.
php artisan filament-messages:install
This plugin utilizes Filament Spatie Media Library. Please follow the steps below.
Install the plugin with Composer:
composer require filament/spatie-laravel-media-library-plugin:"^3.2" -W
If you haven't already done so, you need to publish the migration to create the media table:
php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="medialibrary-migrations"
Run the migrations:
php artisan migrate
Or follow the documentation here.
Add the trait to your User model:
<?php
use Raseldev99\FilamentMessages\Models\Traits\HasFilamentMessages;
class User extends Authenticatable
{
use HasFilamentMessages;
}
?>
Add this plugin to your FilamentPHP panel provider:
<?php
use Raseldev99\FilamentMessages\FilamentMessagesPlugin;
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
FilamentMessagesPlugin::make()
]);
}
}
?>
These are Filament Plugins use for this project.
| Plugin | Author | | :-------------------------------------------------------------------------------------------------- | :------------------------------------------------------ | | Filament Spatie Media Library | Filament Official |
Give a ⭐️ if this project helped you!