An open API service indexing awesome lists of open source software.

https://github.com/rankfoundry/laravel-ghl-wrapper

A Laravel wrapper for GHL API's
https://github.com/rankfoundry/laravel-ghl-wrapper

ghl highlevel laravel laravel-ghl laravel-package laravel-wrapper php

Last synced: 2 months ago
JSON representation

A Laravel wrapper for GHL API's

Awesome Lists containing this project

README

          

# Laravel GHL Wrapper

[![Latest Version on Packagist](https://img.shields.io/packagist/v/rankfoundry/laravel-ghl-wrapper.svg?style=flat-square)](https://packagist.org/packages/rankfoundry/laravel-ghl-wrapper)
[![Total Downloads](https://img.shields.io/packagist/dt/rankfoundry/laravel-ghl-wrapper.svg?style=flat-square)](https://packagist.org/packages/rankfoundry/laravel-ghl-wrapper)

**A Laravel wrapper for High Level (GHL).**

## Install

Via Composer

``` bash
$ composer require rankfoundry/laravel-ghl-wrapper
```

## Usage
See documention for params and others at [GHL Api docs](https://developers.gohighlevel.com/)

List of methods:

### Location

``` php
use Rankfoundry\LaravelGhlWrapper\GhlLocation;

$locations = GhlLocation::locations($apikey); // list of all agency locations
$location = GhlLocation::single($id,$apikey); // single location
```