├── README.md └── database ├── factories └── ModelFactory.php ├── migrations ├── 2017_05_06_172817_create_cities_table.php ├── 2017_05_06_173711_create_states_table.php └── 2017_05_06_173745_create_countries_table.php └── seeds ├── CitiesTableSeeder.php ├── CountriesTableSeeder.php ├── DatabaseSeeder.php └── StatesTableSeeder.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/README.md -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/2017_05_06_172817_create_cities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/database/migrations/2017_05_06_172817_create_cities_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_06_173711_create_states_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/database/migrations/2017_05_06_173711_create_states_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_06_173745_create_countries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/database/migrations/2017_05_06_173745_create_countries_table.php -------------------------------------------------------------------------------- /database/seeds/CitiesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/database/seeds/CitiesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/CountriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/database/seeds/CountriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/StatesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshoaibdev/laravel-country-states-city-seeds-migration/HEAD/database/seeds/StatesTableSeeder.php --------------------------------------------------------------------------------