Closed. This question needs
details or clarity. It is not currently accepting answers.
Answer
Solution:
Before, Laravel 5.2 --plain
was used to make a simple controller without builtin routes and methods. Now :
php artisan make:controller UserController
Works the same as --plain
.
You can see all possible option by :
php artisan make:Controller --help
See the official documentation of Controllers
Source