dev-master
9999999-devLaravel 4 Ongkir.info api
BSD-2-Clause
The Requires
- php >=5.3.0
- illuminate/support 4.0.x
by @totox777
Wallogit.com
2017 © Pedro Peláez
Laravel 4 Ongkir.info api
Laravel 4 ongkir jne based on ongkir.info wrapper, (*1)
add this line to your composer.json, (*2)
"totox777/ongkir": "dev-master"
and then, Run :, (*3)
composer update to pull down the latest version., (*4)
add this line to your app.php provider array:, (*5)
'Totox777\Ongkir\OngkirServiceProvider',
and add this line to app.php aliases array:, (*6)
'Ongkir' => 'Totox777\Ongkir\Facades\Profiler',
config: don't forget to chage the api-key you got from ongkir.info in src/config/config.php, (*7)
Sample Usage:, (*8)
$result = Ongkir::getCost('denpasar','pontianak',1);
if($result!=null){
$prices = $result['price'];
$city = $result['city'];
echo 'Ongkos kirim dari ' . $city->origin . ' ke ' . $city->destination . '<br /><br />';
foreach ($prices->item as $item)
{
echo 'Layanan: ' . $item->service . ', dengan harga : Rp. ' . $item->value . ',- <br />';
}
}
else{
echo 'Tidak ditemukan jalur pengiriman dari asal ke tujuan';
}
Laravel 4 Ongkir.info api
BSD-2-Clause