Baca ini dalam bahasa: Indonesia
You can install the package via composer:
composer require kodepintar/laravel-rajaongkir
You can publish the config file with:
php artisan vendor:publish --tag="rajaongkir-config"
This is the contents of the published config file:
return [
'API_KEY' => env('RAJAONGKIR_KEY', 'somerandomstring'),
'ACCOUNT_TYPE' => env('RAJAONGKIR_TYPE', 'starter')
];
use Kodepintar\LaravelRajaOngkir\Facades\RajaOngkir;
$data = RajaOngkir::getProvince();
return $data;
This repo used template from spatie
The MIT License (MIT). Please see License File for more information.