Rollback n specific migrations in Laravel

Rollback a specific number of migrations in Laravel

In many cases you want to rollback more than 1 migrations in your Laravel application. Instead of running php artisan migrate:rollback for every migration you want to rollback, you can do it using the --step=n option where n is the number of rollback you want to run.

* Since version 5.3

If you want to rollback all migration you are always free to use the php artisan migrate:reset command