Help Thailand developer for address database
topkstt/laravel-thai-address is a Laravel package for help thailand developer for address database.
It currently has 2 GitHub stars and 2.211 downloads on Packagist (latest version 1.0.1).
Install it with composer require topkstt/laravel-thai-address.
Discover more Laravel packages by topkstt
or browse all Laravel packages to compare alternatives.
Last updated
Provide Thailand geographic database like provinces, districts, sub-districts and generate api route for you application.
Install Laravel Thai Address with Composer
composer require topkstt/laravel-thai-address
Publishing package config file
php artisan vendor:publish --provider="TopKSTT\ThaiAddress\ThaiAddressServiceProvider" --tag="config"
Publishing package migration file & migrate database
php artisan vendor:publish --provider="TopKSTT\ThaiAddress\ThaiAddressServiceProvider" --tag="migrations"
php artisan migrate
Publishing package migration seeder & seed database
php artisan vendor:publish --provider="TopKSTT\ThaiAddress\ThaiAddressServiceProvider" --tag="seeders"
php artisan db:seed --class=ThaiAddressTablesSeeder
GET /api/{YOUR_PREFIX_IF_SET}/province/all
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_all | boolean | Optional. Include postal_code, sub_district, district to result. |
GET /api/{YOUR_PREFIX_IF_SET}/province/${id}
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_all | boolean | Optional. Include postal_code, sub_district, district to result. |
GET /api/{YOUR_PREFIX_IF_SET}/province/search/${id}
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_all | boolean | Optional. Include postal_code, sub_district, district to result. |
GET /api/{YOUR_PREFIX_IF_SET}/district/all
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_province | boolean | Optional. Include province to result. |
| with_sub_district | boolean | Optional. Include sub district to result. |
GET /api/{YOUR_PREFIX_IF_SET}/district/${id}
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_province | boolean | Optional. Include province to result. |
| with_sub_district | boolean | Optional. Include sub district to result. |
GET /api/{YOUR_PREFIX_IF_SET}/district/search/${id}
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_province | boolean | Optional. Include province to result. |
| with_sub_district | boolean | Optional. Include sub district to result. |
GET /api/{YOUR_PREFIX_IF_SET}/sub-district/all
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_district | boolean | Optional. Include district to result. |
| with_postal_code | boolean | Optional. Include postal code to result. |
GET /api/{YOUR_PREFIX_IF_SET}/sub-district/${id}
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_district | boolean | Optional. Include district to result. |
| with_postal_code | boolean | Optional. Include postal code to result. |
GET /api/{YOUR_PREFIX_IF_SET}/sub-district/search/${id}
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_district | boolean | Optional. Include district to result. |
| with_postal_code | boolean | Optional. Include postal code to result. |
GET /api/{YOUR_PREFIX_IF_SET}/postal-code/all
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_district | boolean | Optional. Include district to result. |
| with_sub_district | boolean | Optional. Include sub district to result. |
| with_province | boolean | Optional. Include province to result. |
GET /api/{YOUR_PREFIX_IF_SET}/postal-code/${id}
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_district | boolean | Optional. Include district to result. |
| with_sub_district | boolean | Optional. Include sub district to result. |
| with_province | boolean | Optional. Include province to result. |
GET /api/{YOUR_PREFIX_IF_SET}/postal-code/search/${id}
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| with_district | boolean | Optional. Include district to result. |
| with_sub_district | boolean | Optional. Include sub district to result. |
| with_province | boolean | Optional. Include province to result. |