Looking to hire Laravel developers? Try LaraJobs

intercom-laravel maintained by slaughter550

Description
Laravel 5.x wrapper for Intercom-PHP
Last update
2019/05/09 00:45 (4.0.x-dev)
License
Links
Downloads
15 349
Tags

Comments
comments powered by Disqus

intercom-laravel

Laravel 5.x Wrapper for Intercom API

Installation

Using Composer:

composer require slaughter550/intercom-laravel

Configuration

config/app.php

'providers' => [
    'Shadow\IntercomLaravel\ServiceProvider',
],
'aliases' => [
    'Intercom' => 'Shadow\IntercomLaravel\Facade',
],

config/services.php

'intercom' => [
    'app_id' => 'appIdGoesHere',
    'api_key' => 'apiKeyGoesHere',
],

Usage

// Create/update a user
Intercom::users()->create([
    'email' => 'test@intercom.io'
]);