# Which Artisan command gives a list of available commands?

In Laravel, you can get a list of all available artisan commands by using the following command in your terminal:

```php
php artisan list
```

This will display a comprehensive list of all the commands that you can run with artisan, along with a brief description of each command.
