PHPackages                             monzer/filament-chatify-integration - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. monzer/filament-chatify-integration

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

monzer/filament-chatify-integration
===================================

Seamlessly integrate real-time messaging into your application.

1.0.1(1y ago)244.2k↓33.3%8[2 issues](https://github.com/monzer15/filament-chatify-integration/issues)MITPHPPHP ^8.1

Since Mar 10Pushed 1y ago1 watchersCompare

[ Source](https://github.com/monzer15/filament-chatify-integration)[ Packagist](https://packagist.org/packages/monzer/filament-chatify-integration)[ RSS](/packages/monzer-filament-chatify-integration/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

💟 Filament Chatify Integration
==============================

[](#-filament-chatify-integration)

Seamlessly integrate real-time messaging into your **Filament** dashboard using [Chatify](https://github.com/munafio/chatify). This plugin provides a ready-to-use chat widget for Filament, allowing you to enhance user communication effortlessly.

⚙️ Requirements
---------------

[](#️-requirements)

- **PHP**: 8.2+
- **Laravel**: 10+
- **Filament**: 3.x

💅 Installation
--------------

[](#-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
-------------

[](#configuration)

Please visit [Chatify configuration section](https://chatify.munafio.com/configurations) to complete the configuration.

🚀 Usage
-------

[](#-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

[](#-custom-chat-page-example)

To customize the chat page:

#### Step 1: Create a custom page and extend the base 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

[](#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

[](#-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

[](#️-further-customization)

For more advanced customization options, please visit the official [Chatify repository](https://github.com/munafio/chatify).

🛠 Support &amp; Issues
----------------------

[](#-support--issues)

If you encounter any issues or need support, feel free to open an issue on [GitHub](https://github.com/monzer/filament-chatify-integration/issues).

📝 License
---------

[](#-license)

This package is open-source and licensed under the **MIT License**.

### 👤 Attribution

[](#-attribution)

This package integrates [Chatify](https://github.com/munafio/chatify), originally developed by [**Munafio**](https://github.com/munafio). Full credit goes to the original author for building Chatify, which serves as the foundation for this integration.

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance42

Moderate activity, may be stable

Popularity35

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

435d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3269953?v=4)[monzer](/maintainers/monzer)[@monzer](https://github.com/monzer)

---

Top Contributors

[![monzer15](https://avatars.githubusercontent.com/u/59767837?v=4)](https://github.com/monzer15 "monzer15 (4 commits)")

### Embed Badge

![Health badge](/badges/monzer-filament-chatify-integration/health.svg)

```
[![Health](https://phpackages.com/badges/monzer-filament-chatify-integration/health.svg)](https://phpackages.com/packages/monzer-filament-chatify-integration)
```

###  Alternatives

[kirschbaum-development/commentions

A package to allow you to create comments, tag users and more

12369.2k](/packages/kirschbaum-development-commentions)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[codebar-ag/laravel-filament-json-field

A Laravel Filament JSON Field integration with CodeMirror support

1124.1k](/packages/codebar-ag-laravel-filament-json-field)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[defstudio/filament-column-length-limiter

Limit Filament columns length showing a tooltip when text exceeds

126.2k](/packages/defstudio-filament-column-length-limiter)[joaopaulolndev/filament-world-clock

Show hours around the world by timezone

3111.9k](/packages/joaopaulolndev-filament-world-clock)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
