#Laravel 5 State Seeder
Usage
$ php artisan make:model StateThis will generate the model and migration for your database. In your migration you need to include string fields for code and name. Then simply drop the StatesSeeder.php into your seeds folder. Back at the command line run:
$ php artisan migrate
$ php artisan db:seedYou'll now have a functional States database suitable for populating drop downs or whatever else you crazy kids do with your states tables.