PHP code example of arsoft-modules / rajaongkir

1. Go to this page and download the library: Download arsoft-modules/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/ */

    

arsoft-modules / rajaongkir example snippets


    'providers' => [
    	....
    	
    	ArsoftModules\Rajaongkir\RajaOngkirServiceProvider::class,
    ]
    

    'aliases' => [
    	....
    	
    	'RajaOngkir' => ArsoftModules\Rajaongkir\RajaOngkirFacade::class,
    ]
    
 artisan vendor:publish

    
    return [
    	'end_point_api' => env('RAJAONGKIR_ENDPOINT', 'http://rajaongkir.com/api/starter'),
    	'api_key' => env('RAJAONGKIR_KEY', 'SomeRandomString'),
    ];
    

'end_point_api' => 'isi_base_url_api_akun_anda_disini',
'api_key' => 'isi_api_key_anda_disini',

    $list_provinsi = RajaOngkir::province();
    

    $provinsi_id = 1;
    $data_provinsi = RajaOngkir::province($provinsi_id);
    

    $list_kota = RajaOngkir::city();
    

    $kota_id = 1;
    $data_kota = RajaOngkir::city($kota_id);
    

    $kota_asal_id = 501;
    $kota_tujuan_id = 114;
    $berat = 1700; // dalam gram
    $kurir = "jne";
    $list_biaya = RajaOngkir::cost($kota_asal_id, $kota_tujuan_id, $berat, $kurir);