Laravel for Beginners – Learn to Build Full-Stack Web Apps

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

Untitled

To get the list of the all artisan commands

php artisan list

Untitled

Untitled

Untitled

Untitled

Untitled

Get the list of commands in a specific namespace

php artisan make help

This will give you all available commands of make namespace.

Untitled

Untitled

Get details of a specific command

php artisan make:controller --help

Untitled

Discussion

Sign in to join the discussion.

No comments yet. Be the first to start the discussion!