php artisan controller:make resource code example
Example 1: laravel create resource controller
php artisan make:controller PhotoController --resource
Example 2: artisan command to add resources to controller
php artisan make:controller NameofController --resource
// It will create the controller with all methods. laravel version 5.2+