Forrest logo
back to the laravel tool

laravel:tldr:d101c

laravel: List the available installer commands.
$ laravel list
try on your machine

The "laravel list" command is used in the Laravel PHP framework to display a list of available commands that can be executed in the project.

When you run the "laravel list" command in your project's root directory using the command-line interface, it will display a table containing all the registered commands provided by Laravel and its dependencies.

This list can include built-in commands provided by Laravel, as well as any custom commands that you may have added to your project.

The information displayed for each command typically includes the command's name, description, and any available options or arguments that can be passed to it. This can be helpful when you are unsure of which commands are available or need to find a specific command to execute.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the laravel tool