jacksonit / shipping
越南物流 Laravel
1.0.1
2020-09-22 09:56 UTC
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2024-09-22 18:58:28 UTC
README
API 快速配送 (Giao hàng nhanh, ...)
使用 composer 安装.
安装 (Laravel)
通过 composer 安装
composer require jacksonit/shipping
php artisan vendor:publish --provider="Jacksonit\Shipping\ShippingServiceProvider"
获取 GHN 运费
Use Jacksonit\Shipping\GHN;
$data = [
'from_district_id' => '',
'from_ward_code' => '',
'to_district_id' => '',
'to_ward_code' => '',
'weight' => '',
'height' => '',
'length' => '',
'width' => '',
'coupon' => ''
]
$ghn = new GHN();
$record_ghn = $ghn->shippingFee($data);