biila-go/laravel-api-wrapper is a Laravel package for provides biila go api wrapper for laravel.
It currently has 0 GitHub stars and 24 downloads on Packagist (latest version v0.1).
Install it with composer require biila-go/laravel-api-wrapper.
Discover more Laravel packages by biila-go
or browse all Laravel packages to compare alternatives.
Last updated
This package provides a streamlined access to the Biila Go Partner API within your Laravel project.
Run the following command in the root folder of your Laravel project.
composer require biila-go/laravel-api-wrapper
BIILA_GO_API_TOKEN (required)
Token that grants access to the API.
BIILA_GO_API_IDENTITY (optional)
An optional email address that sets the user for the session. If not given, will default to the owner user of the api token.
use BiilaGo\LaravelApiWrapper\Facades\BiilaGoApi;
$reservations = BiilaGoApi::getReservations()->json();
// OR
$reservations = BiilaGoApi::get('reservations')->json();
use BiilaGo\LaravelApiWrapper\Facades\BiilaGoApi;
$reservation = BiilaGoApi::getReservation('R-1')->json();
// OR
$reservation = BiilaGoApi::get('reservations/R-1')->json();
You can find information about the endpoints here.