vanthao03596/laravel-hanhchinhvn

hành chính việt nam laravel

1.2.0 2022-03-04 04:26 UTC

This package is auto-updated.

Last update: 2024-04-04 09:00:13 UTC


README

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ã )

Latest Version on Packagist Tests Total Downloads

Installation

You can install the package via composer:

composer require vanthao03596/laravel-hanhchinhvn

Usage

php artisan vendor:publish --provider="Vanthao03596\HCVN\HCVNServiceProvider"
php artisan migrate
php artisan hcvn:install

Working with Models

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

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.