ggdx/laravel-insightly

205 5
Install
composer require ggdx/laravel-insightly
Latest Version:1.0.3.10
PHP:>=5.5.9
License:MIT
Last Updated:May 19, 2017
Links: GitHub  ·  Packagist
Maintainer: Gingerdan

LaravelInsightly

Getting started

Composer

composer require ggdx/laravel-insightly

Laravel

Add the provider:

'providers' => [
    GGDX\LaravelInsightly\InsightlyServiceProvider::class,
]

Add the facade:

'aliases' => [
    'Insightly' => GGDX\LaravelInsightly\InsightlyFacade::class,
]

Generate the config file:

php artisan vendor:publish

If using version control, add INSIGHTLY_KEY=your_key to the .env or add your key directly to config/insightly.php


Example:

use Insightly;

and then

Insightly::getContacts();

... or if you prefer dependency injection ...

use Insightly;

private $insightly;

public function __construct(Insightly $insightly)
{
    $this->insightly = $insightly;
}

and then in some method

$this->insightly->getContacts();

More info

See the SDK repository

Related Packages

tomatophp/filament-accounts

Manage your multi accounts inside your app using 1 table with multi auth and a l...

8,601 73
chrsc/laraadmin

Forked from LaraAdmin to update code, issues/pr have been sitting in github with...

26 0
nirmit/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin...

30 0
davispeixoto/laravel5-salesforce

Laravel 5 Salesforce Force.com PHP Toolkit port

143,183 47
colinxia/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin...

11