Download the PHP package aaix/filament-chat-bubbles without Composer
On this page you can find all versions of the php package aaix/filament-chat-bubbles. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download aaix/filament-chat-bubbles
More information about aaix/filament-chat-bubbles
Files in aaix/filament-chat-bubbles
Package filament-chat-bubbles
Short Description Android-style Chat Heads for Filament panels with real-time messaging, file sharing, and presence tracking
License MIT
Homepage https://github.com/aaix/filament-chat-bubbles
Informations about the package filament-chat-bubbles
Filament Chat Bubbles
Chat Heads for Filament panels with real-time messaging, file sharing, and presence tracking.
Filament Chat Bubbles brings a complete real-time messaging experience to your Filament panel. Floating chat heads, a slide-over modal, and a dedicated full-page view โ all powered by Laravel Echo with zero npm dependencies in the host project.
Screenshots
Full-page messages view with sidebar, search, and cross-pattern background
Floating chat bubbles ยท Slide-over modal
Key Features
- ๐ฌ Floating Bubbles: Draggable, dockable chat heads with edge snapping and drag-drop sorting.
- ๐ฑ Slide-Over Modal: Conversation list, chat detail, group management, and settings in one panel.
- ๐ฅ๏ธ Full-Page Messages: Dedicated Filament page with sidebar, search panel, and cross-pattern background.
- โก Real-Time: Typing indicators, presence channels, and instant message delivery via Echo/Reverb.
- ๐ File Attachments: Images, documents, and videos with AVIF thumbnails, grid layout, and lightbox gallery.
- ๐ Link Previews: Automatic OG meta fetching with inline preview cards.
- ๐ Emoji Picker: Full categorized picker loaded via CDN. Large emoji rendering for emoji-only messages.
- ๐ข Online Status: Presence dots, idle detection, heartbeat, and "last seen" timestamps.
- ๐ Search: Conversation-scoped and global message search with highlighted results.
- โ๏ธ Rich Messaging: Reply-to, edit, delete, emoji reactions, inline markdown, and code blocks.
- ๐ฅ Groups: Create, rename, and manage group conversations with member count and online indicators.
- โจ๏ธ Keyboard Shortcuts:
Ctrl+Ecode,Ctrl+Bbold,Ctrl+Iitalic,Arrow-Upedit last,Escapecancel.
Requirements
- PHP 8.2+
- Laravel 12+
- Filament 5+
- Laravel Echo + Reverb (or Pusher/Ably)
- Intervention Image 3+
Installation
You can install the package via Composer:
Run migrations and publish assets:
Add the package views to your panel's theme CSS so Tailwind picks up all utility classes:
Then rebuild your theme:
Optionally publish the configuration:
Optionally publish the notification sound:
Quick Setup
-
Register the plugin in your Filament panel provider:
-
Ensure broadcasting is configured:
- Create the storage symlink (for file attachments):
That's it. Chat bubbles will appear in the bottom-right corner of your panel, and the slide-over is accessible from the topbar.
Configuration
The configuration file (config/filament-chat-bubbles.php) allows you to customize:
| Option | Default | Description |
|---|---|---|
user_model |
App\Models\User |
Your User model class |
user_name_attribute |
name |
Attribute used for display name |
user_avatar_attribute |
profile_picture_url |
Attribute used for avatar URL |
table_prefix |
fcb_ |
Database table prefix |
bubble_size |
48 |
Bubble diameter in pixels |
max_message_length |
5000 |
Maximum message body length |
attachments.disk |
public |
Storage disk for file uploads |
attachments.max_size |
50 MB |
Maximum upload file size |
attachments.max_per_message |
20 |
Maximum attachments per message |
link_previews.enabled |
true |
Enable link preview fetching |
presence.enabled |
true |
Enable online/idle tracking |
presence.idle_after |
300 |
Seconds before user is marked idle |
Testing
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
License
The MIT License (MIT). Please see License File for more information.
All versions of filament-chat-bubbles with dependencies
filament/filament Version ^5.0
intervention/image Version ^3.0
spatie/laravel-package-tools Version ^1.15