agungtri222/laravel-rajaongkir is a Laravel package for rajaongkir larvel request wrapper.
It currently has 0 GitHub stars and 7 downloads on Packagist (latest version v1.1).
Install it with composer require agungtri222/laravel-rajaongkir.
Discover more Laravel packages by agungtri222
or browse all Laravel packages to compare alternatives.
Last updated
Laravel RajaOngkir API package.
Require this package with composer using the following command:
composer require agungtri222/laravel-rajaongkir
This package needs some configuration to utilizing RajaOngkir API Services. Add these lines to your .env, then update respective values based on your preferences.
RAJAONGKIR_ENDPOINT=
RAJAONGKIR_API_KEY=
Publish package configuration via command:
php artisan vendor:publish --provider="Agungtri222\RajaOngkir\Providers\RajaOngkirServiceProvider" --tag=config
This package offers features to manage RajaOngkir API Request
along with helpful facade RajaOngkir.
Use it with syntax RajaOngkir::city().
This will return array of all cities data.
see example below.
229 => array:6 [
"city_id" => "230"
"province_id" => "21"
"province" => "Nanggroe Aceh Darussalam (NAD)"
"type" => "Kota"
"city_name" => "Langsa"
"postal_code" => "24412"
]
230 => array:6 [
"city_id" => "231"
"province_id" => "24"
"province" => "Papua"
"type" => "Kabupaten"
"city_name" => "Lanny Jaya"
"postal_code" => "99531"
]
231 => array:6 [
"city_id" => "232"
"province_id" => "3"
"province" => "Banten"
"type" => "Kabupaten"
"city_name" => "Lebak"
"postal_code" => "42319"
]
if you want to search by specified city id and province id use it with RajaOngkir::city($cityId, $provinceId) with string parameter $cityId and $provinceId
and it would return array of response data. see example below.
array:3 [
"query" => array:2 [
"city" => "39"
"province" => "5"
]
"status" => array:2 [
"code" => 200
"description" => "OK"
]
"results" => array:5 [
0 => array:6 [
"city_id" => "39"
"province_id" => "5"
"province" => "DI Yogyakarta"
"type" => "Kabupaten"
"city_name" => "Bantul"
"postal_code" => "55715"
]
1 => array:6 [
"city_id" => "135"
"province_id" => "5"
"province" => "DI Yogyakarta"
"type" => "Kabupaten"
"city_name" => "Gunung Kidul"
"postal_code" => "55812"
]
2 => array:6 [
"city_id" => "210"
"province_id" => "5"
"province" => "DI Yogyakarta"
"type" => "Kabupaten"
"city_name" => "Kulon Progo"
"postal_code" => "55611"
]
3 => array:6 [
"city_id" => "419"
"province_id" => "5"
"province" => "DI Yogyakarta"
"type" => "Kabupaten"
"city_name" => "Sleman"
"postal_code" => "55513"
]
4 => array:6 [
"city_id" => "501"
"province_id" => "5"
"province" => "DI Yogyakarta"
"type" => "Kota"
"city_name" => "Yogyakarta"
"postal_code" => "55111"
]
]
]
Use it with syntax RajaOngkir::province().
if you want to search by specified city id and province id use it with RajaOngkir::province($provinceId) with string parameter $provinceId
Use it with syntax RajaOngkir::currency()
use it with syntax RajaOngkir::cost($origin, $destination, $courier, $weight) provide with string $origin, $destination, $courier and integer of total weight $weight
use it with syntax RajaOngkir::internationalCost($origin, $destination, $courier, $weight) provide with string $origin, $destination, $courier and integer of total weight $weight
With Waybill method you can track your delivery status based on receipt number.
use it with syntax RajaOngkir::waybill($waybill, $courier) provide the string of your receipt number and courier.
The internationalDestination method is used to get a list/name of the international shipping destination country.
use it with syntax RajaOngkir::internationalDestination($id) with string parameter $id
The internationalOrigin method is used to get a list/name of cities that support international shipping.
use it with syntax RajaOngkir::internationalOrigin($id, $province) with string parameter $id and $province
The tests are written with phpunit.
Please provide a .env.testing file in root package directory with contents
same as .env.example before running test command.
You can run the tests from the root of the project directory with the following command.
vendor/bin/phpunit
The Laravel RajaOngkir package is open source software licensed under the GNU LGPL license version 3