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(6mo ago)1184↓50%MITPHPPHP ^8.1

Since Jun 25Pushed 6mo 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 1mo 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

37

—

LowBetter than 83% of packages

Maintenance67

Regular maintenance activity

Popularity16

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity47

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

192d ago

Major Versions

v1.0.1 → v2.0.02025-11-08

### Community

Maintainers

![](https://www.gravatar.com/avatar/302a4d5539139f2957faf60d731a0fbb346a2a1419acf9ace282e91a3edd8099?d=identicon)[thomas-alrek](/maintainers/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

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[awcodes/filament-badgeable-column

Filament Tables column to append and prepend badges.

142419.3k3](/packages/awcodes-filament-badgeable-column)[awcodes/light-switch

Plugin to add theme switching (light/dark/system) to the auth pages for Filament Panels

4789.9k2](/packages/awcodes-light-switch)[awcodes/recently

Easily track and access recently viewed records in your filament panels.

4224.3k](/packages/awcodes-recently)[awcodes/palette

A color picker field for Filament Forms that uses preset color palettes.

2552.6k5](/packages/awcodes-palette)[awcodes/matinee

OEmbed field for Filament Panel and Form Builders.

216.1k1](/packages/awcodes-matinee)

PHPackages © 2026

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