All the artisan commands.Then, by writing "
php artisan list " in the console, we can see all the artisan commands that can be used. We can also write "
php artisan " and press Enter to display all available commands in the artisan console. With this command we can see a long list of commands that
php artisansupports.
To get help:If we want to know more about a command, we can write:
Version check:if we want to know the version of our application Laravel, then we can write the
-Voption.
- Command:
php artisan -V
- Output:
Make commands:If this not enough, we can create our own command using
make: command . Find out more about this by using the
help,command as described above under “
Getting Help .
Console environment.There is one console environment that Artisan provides, which is more
convenient .
Tinkerprovides you with an environment through which a user can interact with a Laravel application and provides an easy way to access data in the database.
- Command:
php artisan tinker
- Output:
Link: https://laravel.com/docs/6.x/artisan