Giter VIP home page Giter VIP logo

laravel-countries-states-cities-seeder's Introduction

Laravel Countries States Cities Seeder

Laravel migrations and seeders for countries, states and cities tables

Introduction

Packages are great, but they also make us dependant on them. We have to register their service providers into application and code according to their documentation even when we can achieve that task without these.

At least for myself, I found it very overwhelming when it comes to create countries, states and cities tables from laravel migrations and seed them. So I created migrations and seeders for that purpose using two popular repositories (mentioned in credits).

Note

This is not package, this just includes countries, states, cities migrations and seeders files. You are free to use standard Laravel relationships and code for your project.

Requirements

  • PHP 7 OR Above
  • Laravel 7 or Above

Installation

  1. Clone repository and move migrations and seeders into relevant directories.
  2. Register Seeders into database/seeders/DatabaseSeeder.php by adding these line in run method
$this->call(CountriesTableSeeder::class);
$this->call(StatesTableSeeder::class);
$this->call(CitiesTableChunkOneSeeder::class);
$this->call(CitiesTableChunkTwoSeeder::class);
$this->call(CitiesTableChunkThreeSeeder::class);
$this->call(CitiesTableChunkFourSeeder::class);
$this->call(CitiesTableChunkFiveSeeder::class);
  1. Run your migrations.
  2. Seed the data using php -d memory_limit=350M artisan db:seed command
If You face memory exausted error, increase value of memory_limit in this command.

Credits

laravel-countries-states-cities-seeder's People

Contributors

as1fali avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.