ufooo/billingo-api-laravel is a Laravel package for billingo api provider for laravel 5+.
It currently has 0 GitHub stars and 30 downloads on Packagist (latest version 0.1.4).
Install it with composer require ufooo/billingo-api-laravel.
Discover more Laravel packages by ufooo
or browse all Laravel packages to compare alternatives.
Last updated
This package is a Billingo API service provider and facade for Laravel 5.1+.
You have to use Composer to install the library
composer require voov/billingo-api-laravel
Find the providers array in the config/app.php file and add the Billingo Service Provider:
'providers' => [
// ...
Billingo\API\Laravel\BillingoServiceProvider::class
];
Now find the aliases array in the same config file and add the Billingo Facade class:
'aliases' => [
// ...
'Billingo' => Billingo\API\Laravel\BillingoFacade::class
];
Before you can use the Billingo service provider you have configure it with your API keys. You can access your API keys here: https://www.billingo.hu/api
In the command line type the following:
php artisan vendor:publish
This command will generate a billingo.php file inside your config directory (usually config/). Enter your API creditentials here.
// Return the list of clients
$clients = Billingo::get('clients');
// Return one client
$client = Billingo::get('clients/123456789');
// save a new client
$clientData = [
"name" => "Gigazoom LLC.",
"email" => "[email protected]",
"billing_address" => [
"street_name" => "Moulton",
"street_type" => "Terrace",
"house_nr" => "2797",
"city" => "Preston",
"postcode" => "PR1",
"country" => "United Kingdom"
]
]
Billingo::post('clients', $clientData);
// save client
Billingo::put('clients/123456789', $newData);
// delete client
Billingo::delete('clients/123456789');