Looking to hire Laravel developers? Try LaraJobs

laravel-b2bwave maintained by waltersilvacruz

Description
PHP client wrapping the B2BWave API.
Author
Last update
2021/10/20 00:51 (dev-main)
License
Links
Downloads
10

Comments
comments powered by Disqus

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

  1. Add the appropriate values to your .env

    B2BWAVE_APP_CODE=<API App Code>
    B2BWAVE_TOKEN=<API Token>
    
  2. Publish configuration file

    Config

    A configuration file named b2bwave.php can be published to config/ 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);