| Package Data | |
|---|---|
| Maintainer Username: | darkin1 |
| Maintainer Contact: | dciesielski87@gmail.com (Dariusz Ciesielski) |
| Package Create Date: | 2016-03-26 |
| Package Last Update: | 2021-05-19 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-06 15:00:37 |
| Package Statistics | |
|---|---|
| Total Downloads: | 86,984 |
| Monthly Downloads: | 75 |
| Daily Downloads: | 2 |
| Total Stars: | 15 |
| Total Watchers: | 2 |
| Total Forks: | 11 |
| Total Open Issues: | 0 |
Wrapper on the Intercom class provided by Intercom - with support for Laravel 5.x
Installation using composer:
composer require darkin1/intercom
And add the service provider in config/app.php:
Darkin1\Intercom\IntercomServiceProvider::class,
And add the facade alias in config/app.php:
'Intercom' => Darkin1\Intercom\Facades\Intercom::class,
Change your default settings in app/config/intercom.php:
<?php
return [
'access_token' => env('INTERCOM_ACCESS_TOKEN', '****'),
];
use Intercom;
$users = Intercom::users()->getUsers([]);
$leads = Intercom::leads()->getLeads([]);