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
- Host: GitHub
- URL: https://github.com/rankfoundry/laravel-ghl-wrapper
- Owner: RankFoundry
- License: mit
- Created: 2020-12-03T21:10:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-18T19:57:19.000Z (over 5 years ago)
- Last Synced: 2024-09-13T23:20:05.553Z (almost 2 years ago)
- Topics: ghl, highlevel, laravel, laravel-ghl, laravel-package, laravel-wrapper, php
- Language: PHP
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel GHL Wrapper
[](https://packagist.org/packages/rankfoundry/laravel-ghl-wrapper)
[](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
```