A Laravel Facade to access the Current RMS Api
jjsoftwareltd/current-gateway is a Laravel package for a laravel facade to access the current rms api.
It currently has 0 GitHub stars and 1.961 downloads on Packagist (latest version v1.12).
Install it with composer require jjsoftwareltd/current-gateway.
Discover more Laravel packages by jjsoftwareltd
or browse all Laravel packages to compare alternatives.
Last updated
You can install the package via composer:
composer require jjsoftwareltd/current-gateway
Add your subdmoain and key to your env file:
CURRENT_SUBDOMAIN=
CURRENT_KEY=
You can optionally publish the config file with:
php artisan vendor:publish --tag="current-gateway-config"
The response is returned as an associative array.
CurrentGateway::get('opportunities', ['page' => 1]);
CurrentGateway::post('opportunities', ['subject' => 'My Job']);
CurrentGateway::put('opportunities/1', ['subject' => 'My Job']);
CurrentGateway::delete('opportunities/1');
Please see CHANGELOG for more information on what has changed recently.
The MIT License (MIT). Please see License File for more information.