Send a lead to the default BAM Lead Tracker web service.
Send a lead to the default BAM Lead Tracker web service., (*1)
Begin by installing this package through Composer. Edit your project's composer.json
file to require anakadote/bamlt
., (*2)
"require": { "anakadote/bamlt": "dev-master" }
Next, update Composer from the Terminal:, (*3)
composer update
There is one public method available, send(string $uri, array $input, $is_client_uri = false), which takes three parameters:, (*4)
$is_client_uri - true for a Client URI, false for a Store URI, (*5)
with(new BAMLT)->send(BAMLT_URI, $input);, (*6)
To use with Laravel, add the service provider. Open config/app.php
and add a new item to the providers array., (*7)
Anakadote\BAMLT\BAMLTServiceProvider::class
This package is also accessible via a Laravel Facade so to use simply call its methods on the Facade "BAMLT":, (*8)
BAMLT::send(env('BAMLT_URI'), $request->all())