PHPackages                             apility/filament-intercom - 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. apility/filament-intercom

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

apility/filament-intercom
=========================

A Filament plugin for Intercom

v2.0.0(7mo ago)1203↓91.7%MITPHPPHP ^8.1

Since Jun 25Pushed 7mo agoCompare

[ Source](https://github.com/apility/filament-intercom)[ Packagist](https://packagist.org/packages/apility/filament-intercom)[ RSS](/packages/apility-filament-intercom/feed)WikiDiscussions master Synced 2d ago

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

🛠 Installation and Setup
------------------------

[](#-installation-and-setup)

You can install this plugin via Composer.

### Step 1: Install the Plugin

[](#step-1-install-the-plugin)

Run the following command to install the package via Composer:

```
composer require apility/filament-intercom
```

### Step 2: Add this into your Filament PanelProvider class panel()

[](#step-2-add-this-into-your-filament-panelprovider-class-panel)

```
use Apility\FilamentIntercom\FilamentIntercomPlugin;

$panel->...
    ->plugins([
      ...
      FilamentIntercomPlugin::make()      //required to enable this extension
    ]);
```

### Step 3: Add the folloing to your `config/services.php` file

[](#step-3-add-the-folloing-to-your-configservicesphp-file)

```
'intercom' => [
    'app_id' => env('INTERCOM_APP_ID'),
],
```

### Step 4: Add your Intercom App ID to your `.env`

[](#step-4-add-your-intercom-app-id-to-your-env)

```
INTERCOM_APPID=
```

Usage
-----

[](#usage)

Once installed and registered, the Intercom Chat widget will appear when logged in to the Filament panel

[![Screenshot of a Filament panel with the Inercom chat widget.](filament-intercom.png)](filament-intercom.png)

Advanced
--------

[](#advanced)

If you need to customize the parameters from the authenticated user thats sent to Intercom, simply implement the `Apility\FilamentIntercom\Contracts\IntercomUser` interface to your User model. This data will be merged with the default values (id, email, name, created\_at).

```
namespace App\Models;

// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Apility\FilamentIntercom\Contracts\IntercomUser;

class User extends Authenticatable implements IntercomUser
{
    ...

    public function getIntercomUserData(): array {
        return [
            'company' => [
                'id' => $this->company->id,
                'name' => $this->company->name,
            ],
        ];
    }
}
```

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance62

Regular maintenance activity

Popularity14

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% 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 ~68 days

Total

3

Last Release

238d ago

Major Versions

v1.0.1 → v2.0.02025-11-08

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/14291825?v=4)[Thomas Alrek](/maintainers/thomas-alrek)[@thomas-alrek](https://github.com/thomas-alrek)

---

Top Contributors

[![thomas-alrek](https://avatars.githubusercontent.com/u/14291825?v=4)](https://github.com/thomas-alrek "thomas-alrek (2 commits)")[![olavoyen](https://avatars.githubusercontent.com/u/3416810?v=4)](https://github.com/olavoyen "olavoyen (1 commits)")

---

Tags

pluginfilamentintercom

### Embed Badge

![Health badge](/badges/apility-filament-intercom/health.svg)

```
[![Health](https://phpackages.com/badges/apility-filament-intercom/health.svg)](https://phpackages.com/packages/apility-filament-intercom)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[bezhansalleh/filament-panel-switch

Easily Switch between your Filament Panels

166416.1k5](/packages/bezhansalleh-filament-panel-switch)[eslam-reda-div/filament-copilot

A Filament plugin for AI-powered copilot features.

359.9k](/packages/eslam-reda-div-filament-copilot)[promethys/revive

A 'RecycleBin' page where users can restore or delete permanently soft-deleted models.

162.9k](/packages/promethys-revive)[lartisan/filament-architect

A step-by-step wizard to generate full Eloquent and Filament resources straight from the Filament panel

411.2k](/packages/lartisan-filament-architect)

PHPackages © 2026

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