Package Data | |
---|---|
Maintainer Username: | tormjens |
Maintainer Contact: | web@anunatak.no (Anunatak) |
Package Create Date: | 2015-02-19 |
Package Last Update: | 2015-02-19 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-11 15:15:34 |
Package Statistics | |
---|---|
Total Downloads: | 31 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This library implements the Bring API for Laravel.
Install using composer:
composer require anunatak/bring
This package is compatible with Laravel 5.
Add the service provider in config/app.php
:
'Anunatak\Bring\BringServiceProvider',
And add an alias:
'Bring' => 'Anunatak\Bring\Bring',
All methods return an array of information directly from the Bring API.
For information about the data returned, please refer to the Bring API Documentation.
Get information about a postal code (such as postal area). By default this searches for postal codes in Norway, but the API also support a number of other countries
$postalCode = Bring::postalCode(1337);
Get an array of nearby pickup points to a postal code. This is, for now, only an implementation of the postal code method. More to come later.
$pickupPoints = Bring::pickupPoints(1337);
You can also get tracking information about a package. Will require a valid tracking number, but for testing purposes you can use TESTPACKAGE-AT-PICKUPPOINT
$tracking = Bring::trackPackage('TESTPACKAGE-AT-PICKUPPOINT');