0

enter image description here

How can I solve this type of error?

patricus
  • 59,488
  • 15
  • 143
  • 145

1 Answers1

1

Change command to:

php artisan make:migration create_books_table --create=books

Command thinks that you're trying to pass two arguments. You should use --create, as an option:

https://laravel.com/docs/5.1/migrations#generating-migrations

Alexey Mezenin
  • 158,981
  • 26
  • 290
  • 279