Loading video...
Introduction to artisan
Getting Started With Laravel
Introduction to Artisan
What is artisan?
In Laravel, an artisan is a command-line tool that helps you perform various tasks related to your web application, such as generating code, managing migrations, clearing caches, and more.
Get Information about the project
php artisan about

To get the list of the all artisan commands
php artisan list





Get the list of commands in a specific namespace
php artisan make help
This will give you all available commands of make namespace.


Get details of a specific command
php artisan make:controller --help
