定制 alkoumi/filament-n8n-chat 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

alkoumi/filament-n8n-chat

Composer 安装命令:

composer require alkoumi/filament-n8n-chat

包简介

A seamless integration of n8n chat widget into your FilamentPHP applications

README 文档

README

Total Downloads Packagist Stars License Latest Version on Packagist GitHub release (latest by date)

Filament N8n Chat Plugin

A seamless integration of n8n chat widget into your FilamentPHP applications with full multilingual support and theme customization.

Features

  • 🚀 Full compatibility with FilamentPHP v4 & v5
  • 🌍 Multilingual support (Arabic, English, and more)
  • 💬 Full n8n chat functionality
  • 🎨 Custommizable themes with updating config colors
  • 🔧 Simplified configuration
  • 📱 Fully responsive design with RTL support
  • 🔐 Authentication-aware display options

Requirements

  • PHP 8.2+
  • Laravel 11.x
  • FilamentPHP 4.x
  • Livewire 3.x (auto-installed with Filament)

Installation

Step 1: Install via Composer

composer require alkoumi/filament-n8n-chat

Step 2: Publish Configuration and Translations

php artisan vendor:publish --tag="filament-n8n-chat-config"
php artisan vendor:publish --tag="filament-n8n-chat-translations"

Step 3: Add Environment Variables or Your config.filament-n8n-chat

Add your n8n webhook URL to your .env file: or in config.filament-n8n-chat

N8N_CHAT_ENABLED=true
N8N_CHAT_WEBHOOK_URL=https://your-n8n-instance.com/webhook/your-webhook-id

Usage

Basic Setup

Method 2: Plugin Registration (Advanced)

Register the plugin in your Panel Provider for more control:

// app/Providers/Filament/AdminPanelProvider.php

use Alkoumi\FilamentN8nChat\FilamentN8nChatPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->default()
        ->id('admin')
        ->path('admin')
        // ... other configurations
        ->plugins([
            FilamentN8nChatPlugin::make()
                ->config(function () {
                        $lang = app()->getLocale() ?? 'ar';

                        return [
                            'defaultLanguage' => $lang,
                            'initialMessages' => $lang === 'ar'
                                ? [
                                    'أنا مساعد الذكاء الإصطناعي',
                                    'آمر، كيف أخدمك 💐',
                                ]
                                : [
                                    'Hello! I am your AI assistant',
                                    'How can I help you today?',
                                ],
                            'i18n' => [
                                'en' => [
                                    'title' => 'Hi there! 👋',
                                    'subtitle' => 'I am AI assistant',
                                    'footer' => '',
                                    'getStarted' => 'New Conversation',
                                    'inputPlaceholder' => 'How can I help you today?',
                                ],
                                'ar' => [
                                    'title' => 'مرحبًا بك 💐',
                                    'subtitle' => 'أنا مساعد الذكاء الإصطناعي',
                                    'footer' => '',
                                    'getStarted' => 'محادثة جديدة',
                                    'inputPlaceholder' => 'آمر، كيف أقدر أخدمك 💐',
                                ],
                            ],
                        ];
                    }),
        ]);
}

Configuration

Simplified Configuration with i18n Support

Just take alook in // config/filament-n8n-chat.php

Advanced Usage

Conditional Display

Show chat only for specific user roles:

FilamentN8nChatPlugin::make()
    ->enabled(fn () => auth()->user()?->hasRole('admin'))

Dynamic Configuration

Configure based on current user:

FilamentN8nChatPlugin::make()
    ->config(function () {
        return [
            'initialMessages' => auth()->check() 
                ? 'Welcome back, ' . auth()->user()->name . '!'
                : 'Hello! How can I help you?',
        ];
    })

Custom Styling

You can customize the chat widget appearance by adding custom config options.

JavaScript Events

Listen to chat events:

window.addEventListener('n8n-chat-ready', (event) => {
    console.log('N8n chat is ready!', event.detail.chat);
});

// Programmatically control the chat
window.openN8nChat();
window.closeN8nChat();
window.toggleN8nChat();
window.sendN8nMessage('Hello from code!');

N8n Workflow Setup

Basic Webhook Setup

  1. Create a new workflow in n8n
  2. Use chat trigger
  3. Make Chat Publicly Available
  4. Copy Chat URL (this will be your webhook URL)
  5. Now you can use the plugin to integrate chat into your FilamentPHP application!

Troubleshooting

Chat Widget Not Appearing

  1. Check if the plugin is enabled in config
  2. Verify the webhook URL is set correctly
  3. Check browser console for JavaScript errors

Security Considerations

  1. Use HTTPS: Always use HTTPS for your webhook URLs
  2. Validate Input: Sanitize and validate all user input in your n8n workflows
  3. Rate Limiting: Implement rate limiting in your n8n workflows
  4. Authentication: Use the user metadata feature to track users
  5. Environment Variables: Never commit webhook URLs to version control

Support

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Credits

License

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

alkoumi/filament-n8n-chat 适用场景与选型建议

alkoumi/filament-n8n-chat 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 69 次下载、GitHub Stars 达 8, 最近一次更新时间为 2026 年 01 月 22 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「chat」 「laravel」 「widget」 「chatbot」 「filament」 「n8n」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 alkoumi/filament-n8n-chat 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 alkoumi/filament-n8n-chat 我们能提供哪些服务?
定制开发 / 二次开发

基于 alkoumi/filament-n8n-chat 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 69
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 8
  • 点击次数: 33
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 8
  • Watchers: 0
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-22