php artisan migrate:make create_mytable fails: “migrate:make” is not defined
When running the following command at the root of my Laravel 5 application php artisan migrate:make create_mytable fails: “migrate:make” is not defined
Solution :
In laravel 5 The syntax has changed to php artisan make:migration.
Example
C:\wamp\www\laravel>php artisan make:migration users Created Migration: 2015_05_05_100754_users