1php artisan make:model --migration --controller --resource Example
2
3--- Or ---
4
5php artisan make:model -mcr Example
6
7--- Or ---
8
9-a or -all includes Migration, Model, Controller, Factory and Seeder
10
11php artisan make:model --all Example
12
13php artisan make:model -a Example
14
1$ php artisan migrate:fresh
2
3Dropped all tables successfully.
4Migration table created successfully.
5Migrating: 2014_10_12_000000_create_users_table
6Migrated: 2014_10_12_000000_create_users_table
7Migrating: 2014_10_12_100000_create_password_resets_table
8Migrated: 2014_10_12_100000_create_password_resets_table
9