totox777 / tiki
Tiki Online Wrapper
dev-master
2014-05-16 11:45 UTC
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
This package is not auto-updated.
Last update: 2024-11-05 07:13:17 UTC
README
Laravel 4 ongkir tiki, curl based
add this line to your composer.json
"totox777/tiki": "dev-master"
and then, Run :
composer update
to pull down the latest version.
add this line to your app.php provider array:
'Totox777\Tiki\TikiServiceProvider',
and add this line to app.php aliases array:
'Tiki' => 'Totox777\Tiki\Facades\Profiler',
Sample Usage:
$xxx = Tiki::getCost("denpasar", "bandung",1);
if($xxx!=null){
foreach ($xxx as $hasil)
{
echo 'Layanan: ' . $hasil['layanan'] . ', dengan harga : Rp. ' . $hasil['harga'] . ',- <br />';
}
}
else{
echo "Tidak ditemukan jalur pengiriman, silahkan coba kota terdekat";
}