Laravel hcvn contain all cities, districts, wards in vietnam
(Chú ý: Huyện Lý Sơn tỉnh Quảng Ngãi hiện chỉ còn cấp Huyện không có cấp xã )
You can install the package via composer:
composer require vanthao03596/laravel-hanhchinhvn
php artisan vendor:publish --provider="Vanthao03596\HCVN\HCVNServiceProvider"
php artisan migrate
php artisan hcvn:install
Get all cities, districts, wards
use Vanthao03596\HCVN\Models\Province;
use Vanthao03596\HCVN\Models\District;
use Vanthao03596\HCVN\Models\Ward;
$cities = Province::get();
$districts = District::get();
$wards = Ward::get();
Get data via relationship
use Vanthao03596\HCVN\Models\Province;
$city = Province::first();
$districts = $city->districts;
$wards = $city->wards;
All data get from: madnh/hanhchinhvn
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.