dev-master
9999999-devA Laravel package to connect to Avanser call tracking API
MIT
The Requires
by Anthony Gherghetta
Wallogit.com
2017 © Pedro Peláez
A Laravel package to connect to Avanser call tracking API
This is a laravel package to connect to the Avanser call tracking platform., (*1)
http://www.avanser.com.au/, (*2)
composer require wheredidgogogo/avanser
In your config/app.php add the following Wheredidgogogo\Avanser\AvanserServiceProvider::class, to the providers array:, (*3)
'providers' => [
...
Wheredidgogogo\Avanser\AvanserServiceProvider::class,
...
],
'alias' => [
...
'Avanser' => Wheredidgogogo\Avanser\AvanserFacade::class,
...
],
php artisan vendor:publish
This will genetate a config file config/avanser.php where you will need to enter your Avanser API credentials., (*4)
$results = \Avanser::getCallData();
An array of values can be sent with the query:, (*5)
date_from, date_to, last_id, limit, evaluations, features, wav, web, detailed, localtime
A Laravel package to connect to Avanser call tracking API
MIT