laravel-b2bwave maintained by waltersilvacruz
Laravel B2BWave API Client
PHP client wrapping the B2BWave API.
This package was designed to work with Laravel, so this package is written with Laravel in mind.
Installation
Install Laravel B2BWave API Cliente:
$ composer require waltersilvacruz/laravel-b2bwave
The package uses the auto registration feature of Laravel.
Configuration
-
Add the appropriate values to your
.envB2BWAVE_APP_CODE=<API App Code> B2BWAVE_TOKEN=<API Token> -
Publish configuration file
Config
A configuration file named
b2bwave.phpcan be published toconfig/by running...php artisan vendor:publish --tag=b2bwave-config
Usage
Here is an example of getting the customer's information from B2bWave:
$b2bwave = app('B2BWaveClient');
$options = [
'name' => 'John Doe'
];
$response = $b2bwave->customers()->search($array);
dd($response);