You can install this plugin via Composer.
Run the following command to install the package via Composer:
composer require apility/filament-intercom
use Apility\FilamentIntercom\FilamentIntercomPlugin;
$panel->...
->plugins([
...
FilamentIntercomPlugin::make() //required to enable this extension
]);
'intercom' => [
'app_id' => env('INTERCOM_APP_ID'),
],
INTERCOM_APPID=<your app id>
Once installed and registered, the Intercom Chat widget will appear when logged in to the Filament panel
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,
],
];
}
}