Artisan Console
- Artisan is the command line interface included with Laravel.
- To see a list of all available Artisan commands, you may use the following command.
php artisan list

- Above the screen shot see the available command list.
- To view help about any command and view the available options and arguments, use the name of the command with help .
php artisan help make:controller

- Below screenshot are just a few examples, but there are many more commands available for various tasks. You can also create custom Artisan commands for your specific needs.