brnysn / laravel-world
The simplest way to add country, state and city to Laravel application.
Requires
- php: ^8.0
- spatie/laravel-package-tools: ^1.13.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^6.0
- orchestra/testbench: ^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpunit/phpunit: ^9.5
- dev-main
- 2.0.0
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.0
- 1.0.0
- 0.0.3
- 0.0.2
- 0.0.1
- dev-dependabot/github_actions/stefanzweifel/git-auto-commit-action-5
- dev-dependabot/github_actions/dependabot/fetch-metadata-1.6.0
- dev-dependabot/github_actions/actions/checkout-4
- dev-dependabot/github_actions/aglipanci/laravel-pint-action-2.3.0
This package is auto-updated.
Last update: 2025-03-09 05:17:20 UTC
README
The simplest way to add country, state and city to Laravel application.
Data is taken from dr5hn/countries-states-cities-database. Thanks to dr5hn for the great work.
Data is last updated on 2022-10-26.
Installation
Install the package via composer:
composer require brnysn/laravel-world
Publish the config file with:
php artisan vendor:publish --tag="world-config"
Define whether to use uuid or id in the config file: Migrations will be created according to this setting.
return [ 'use_uuid' => false, ];
Publish and run the migrations with:
php artisan vendor:publish --tag="world-migrations"
php artisan migrate
After the migration has been published you can add the countries, states and cities to your database by running:
php artisan db:seed --class="Brnysn\\World\\Database\\Seeders\\WorldSeeder"
Seeding the database will take a while.
Add HasWorldAddress
trait to your models to add the country, state and city relationship:
use Brnysn\World\Traits\HasWorldAddress; class {class_name} extends Model { use HasWorldAddress; }
Usage
// Get Data use Brnysn\World\Models\Country; use Brnysn\World\Models\State; use Brnysn\World\Models\City; $country = Country::find(1); $state = State::find(1); $city = City::find(1); // Get Relationship $country->states; $state->cities; $city->state; $city->country; // Query $country->states()->where('name', 'like', '%state%')->get(); $state->cities()->where('name', 'like', '%city%')->get(); // Set Address of a model with HasWorldAddress trait $model->changeCountry($country); $model->changeState($state); $model->changeCity($city); $model->changeAddress($country, $state, $city); // Get details of address of a model with HasWorldAddress trait $model->country->name; $model->state->name;
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.