All Projects → cblink → Region

cblink / Region

laravel 省市区联动数据生成

Labels

Projects that are alternatives of or similar to Region

Laravel Image Optimizer
[deprecated] Image optimizer for laravel
Stars: ✭ 156 (-1.89%)
Mutual labels:  laravel
Searchable
A php trait to search laravel models
Stars: ✭ 1,923 (+1109.43%)
Mutual labels:  laravel
Validation Composite
Allows uniting of several validation rules into single one for easy re-usage
Stars: ✭ 159 (+0%)
Mutual labels:  laravel
Timezone
Functions for helping manage timezones in Laravel. Includes <select> form builder for timezones.
Stars: ✭ 156 (-1.89%)
Mutual labels:  laravel
Magutticms
Laravel 8 CMS for Web Artisans
Stars: ✭ 155 (-2.52%)
Mutual labels:  laravel
Tastyigniter
🔥 Powerful, yet easy to use, open-source online ordering, table reservation and management system for restaurants
Stars: ✭ 2,137 (+1244.03%)
Mutual labels:  laravel
Laravel Proximage
🌐 Laravel Proximage is a handy package for proxying images.
Stars: ✭ 156 (-1.89%)
Mutual labels:  laravel
Pingcrm React
⚛️ Ping CRM React - A demo app to illustrate how Inertia.js works with Laravel and React (hosted on a heroku free dyno).
Stars: ✭ 158 (-0.63%)
Mutual labels:  laravel
Online Ftp S3
Online FTP / Amazon S3 Filebrowser
Stars: ✭ 157 (-1.26%)
Mutual labels:  laravel
Dsshop
vue2.0+Laravel7商城电商平台,完全前后端分离,免费开源可商用,H5商城电商平台,微信小程序商城电商平台;支持H5、微信小程序,支付宝小程序、百度小程序、字节跳动小程序、安卓、IOS等等
Stars: ✭ 156 (-1.89%)
Mutual labels:  laravel
Laravel Blog Poetry All
Laravel诗词博客-匠心编程,热爱生活。喜欢就 Star 吧
Stars: ✭ 157 (-1.26%)
Mutual labels:  laravel
Restful Api With Laravel Definitive Guide
Repository with the base code for the course "RESTful API with Laravel - Definitive-Guide"
Stars: ✭ 156 (-1.89%)
Mutual labels:  laravel
Image
PHP Image Manipulation
Stars: ✭ 12,298 (+7634.59%)
Mutual labels:  laravel
Symposium
Management of proposals, bios, photos, etc. for conference speakers.
Stars: ✭ 157 (-1.26%)
Mutual labels:  laravel
Laravel
Docker image to run Laravel 5.x projects
Stars: ✭ 158 (-0.63%)
Mutual labels:  laravel
Spoon
Our simple Laravel boilerplate
Stars: ✭ 156 (-1.89%)
Mutual labels:  laravel
Captcha
Captcha for Laravel 5/6/7/8
Stars: ✭ 1,985 (+1148.43%)
Mutual labels:  laravel
Laravel Enum
Laravel support for spatie/enum
Stars: ✭ 158 (-0.63%)
Mutual labels:  laravel
Crud
Build custom admin panels. Fast!
Stars: ✭ 2,144 (+1248.43%)
Mutual labels:  laravel
Cachet
📛 An open source status page system for everyone.
Stars: ✭ 12,478 (+7747.8%)
Mutual labels:  laravel

region

省市区联动数据

安装

composer require cblink/region

在 app.php 中加入服务提供者

/*
 * Package Service Providers...
 */
Cblink\Region\RegionServiceProvider::class,

生成 migration 文件

php artisan vendor:publish --provider="Cblink\Region\RegionServiceProvider"

2018_01_01_000000_create_regions_table.php 可以根据自身需求与结构修改表名或字段名

执行迁移

php artisan migrate

默认方法

use Cblink\Region\Region;

$region = new Region();

$region->allProvinces(); // 全部省份
$region->allCities(); // 全部城市
$region->allAreas(); // 全部区
$region->nest($id = null); // 展示全部子区域,可指定某个省或市id
$region->nestFromChild($id); // 根据市或区id展示其所有父结构
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].