PHP code example of gufy / rajaongkir
1. Go to this page and download the library: Download gufy/rajaongkir library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gufy / rajaongkir example snippets
use Gufy\Rajaongkir\Rajaongkir;
use Gufy\Rajaongkir\Province;
use Gufy\Rajaongkir\City;
use Gufy\Rajaongkir\Cost;
use Gufy\Rajaongkir\Waybill;
// initialize api. first argument will be your api key, and the second one is your package
Rajaongkir::init('your-api-key', 'starter');
// get all provinces
$provinces = Province::all();
// get cities
$cities = City::all();
// get cities based on province id
$cities = City::all($province_id);
// get cost
$cost = Cost::get(['city'=>$origin_city_id], ['city'=>$destination_city], $weight, 'jne');
// get waybill
$cost = Waybill::find('jne', 'your-waybill');