laravel command to make controller code example

Example 1: laravel create controller

php artisan make:controller MyController

Example 2: laravel create controller command

php artisan make:controller UserController

Example 3: use resource in laravel 8

php artisan make:controller PhotoController --resource --model=Photo

Example 4: laravel controller create command in a folder

However, if you would like to create it in a custom directory then refer to the line below:

php artisan make:controller pathName/controllerName

Tags:

Php Example