monzer/filament-chatify-integration
Composer 安装命令:
composer require monzer/filament-chatify-integration
包简介
Seamlessly integrate real-time messaging into your application.
README 文档
README
Seamlessly integrate real-time messaging into your Filament dashboard using Chatify. This plugin provides a ready-to-use chat widget for Filament, allowing you to enhance user communication effortlessly.
⚙️ Requirements
- PHP: 8.2+
- Laravel: 10+
- Filament: 3.x
💅 Installation
Run the following command to install the package via Composer:
composer require monzer/filament-chatify-integration
Install command:
php artisan filament-chatify-integration:install
Run database migration:
php artisan migrate
Publish assets:
php artisan filament:assets
Configuration
Please visit Chatify configuration section to complete the configuration.
🚀 Usage
To enable the plugin in your Filament panel, register it as follows:
use Monzer\FilamentChatifyIntegration\ChatifyPlugin; public function panel(Panel $panel): Panel { return $panel ->plugin(ChatifyPlugin::make()); }
Once installed, the plugin automatically provides a floating chat widget for real-time communication.
💎 Custom Chat Page Example
To customize the chat page:
Step 1: Create a custom page and extend the base chat page
namespace App\Filament\Pages; use Monzer\FilamentChatifyIntegration\Pages\Chatify as BaseChat; class CustomChatifyPage extends BaseChat { protected static ?string $slug = "chat"; protected static ?string $navigationLabel = "Chat"; protected static ?string $title = "Chat"; }
Step 2: Register the custom page in the plugin
use Monzer\FilamentChatifyIntegration\ChatifyPlugin; use App\Filament\Pages\CustomChatifyPage; public function panel(Panel $panel): Panel { return $panel ->plugin(ChatifyPlugin::make()->customPage(CustomChatifyPage::class)); // Also accepts a closure }
❌ Disabling the Floating Chat Widget
To disable the floating chat widget, use the following configuration:
use Monzer\FilamentChatifyIntegration\ChatifyPlugin; use App\Filament\Pages\CustomChatifyPage; public function panel(Panel $panel): Panel { return $panel ->plugin(ChatifyPlugin::make()->disableFloatingChatWidget()); // Also accepts a closure }
🛠️ Further Customization
For more advanced customization options, please visit the official Chatify repository.
🛠 Support & Issues
If you encounter any issues or need support, feel free to open an issue on GitHub.
📝 License
This package is open-source and licensed under the MIT License.
👤 Attribution
This package integrates Chatify, originally developed by Munafio. Full credit goes to the original author for building Chatify, which serves as the foundation for this integration.
monzer/filament-chatify-integration 适用场景与选型建议
monzer/filament-chatify-integration 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.24k 次下载、GitHub Stars 达 25, 最近一次更新时间为 2025 年 03 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 monzer/filament-chatify-integration 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 monzer/filament-chatify-integration 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 5.24k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 26
- 点击次数: 28
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-03-10