Tinkerwell 4 is out now! See what's new or buy now.
Tinkerwell background image
Tinkerwell Logo Tinkerwell
Go back to Blog

Unleash the Power of Artisan: The Laravel CLI Tool that every Laravel developer must know

Laravel is a popular web application framework that is known for its elegant syntax and robust features. One of the key tools that comes with Laravel is the command line interface (CLI) tool called Artisan. This powerful tool allows developers to perform a variety of tasks such as managing databases, creating boilerplate code, and running tests. In this blog post, we will explore the various capabilities of Artisan and how it can help improve your workflow as a Laravel developer.

One of the most useful features of Artisan is its ability to generate boilerplate code for common tasks. This can save a lot of time and effort for developers, as they no longer have to write the same code over and over again. For example, Artisan can generate a new model or controller with a single command. This not only creates the necessary files, but it also sets up the basic structure and functions that are commonly used in these types of classes.

Example: Creating a new Laravel Model
#

php artisan make:model User

This command will generate a new model class called User in the app directory. The class will be pre-populated with the basic structure and functions that are commonly used in models.

The next important command is artisan tinker. Tinker opens a REPL to your code where you can run statements and debug the state of your application without changing the code. Tinkerwell is artisan tinker on steroids and allows you to interact with your application in new ways and prototype code much faster than by adding a /test route or deploying code to a server to se your changes.

Tinkerwell – php artisan tinker on steroids

Tinker with autocompletion, a multi-line code editor, code snippets and magic comments.

Learn more

Another powerful feature of Artisan is its ability to manage your application's database. This includes tasks such as running migrations, which are used to update the database schema, and running seeders, which are used to populate the database with test data. Artisan makes it easy to run these tasks, and it also provides options for rolling back changes and running specific migrations or seeders.

Example: Running database migrations
#

php artisan migrate

This command will run all of the outstanding database migrations that have not yet been applied to the database. This can be useful for updating the schema of the database and making sure it is in sync with the codebase.

In addition to managing the database, Artisan also provides tools for managing the cache and queue systems used by Laravel applications. This includes commands for clearing the cache, restarting the queue worker, and running failed queue jobs. These features can be especially useful when troubleshooting problems or optimizing the performance of your application.

One of the most exciting features of Artisan is its ability to create custom commands. This allows developers to extend the capabilities of Artisan by writing their own commands that can be run from the command line. These custom commands can perform a wide range of tasks, such as importing data from a CSV file or sending a batch of emails. This feature provides a lot of flexibility and can be a great way to automate repetitive tasks.

Example: Creating a custom Artisan command
#

php artisan make:command SendEmails

This command will generate a new SendEmails class in the app/Console/Commands directory. This class will extend the Command class from the Laravel framework, and it will contain the basic structure and methods needed to create a custom Artisan command. Developers can then add their own code to the class to define the functionality of the command.

In addition to the features mentioned above, Artisan also provides a variety of other useful commands. This includes commands for publishing package assets, running tests, and even generating a new Laravel application. These commands can save a lot of time and effort, and they can help ensure that your application is properly configured and ready to go.

Overall, Artisan is a powerful tool that can greatly improve the workflow of Laravel developers. Its ability to generate boilerplate code, manage the database, and run custom commands can save a lot of time and effort, and it can help ensure that your application is running smoothly and efficiently. If you are a Laravel developer, it is definitely worth taking the time to learn more about Artisan and all of its capabilities.

Jess Archer, Laravel Core team member
“Tinkerwell is the fastest way to test an idea or debug an application. It just keeps getting better and better!”

Jess Archer

Laravel Core team member

Patrik Ahlström, Developer
“Tinkerwell is one of those small things that makes life as a developer so much easier, integrating with Laravel is a breeze.”
Patrik Ahlström

Developer

Tinkerwell: The PHP Scratchpad

The must-have companion to your favorite IDE. Quickly iterate on PHP code within the context of your web application.

Buy now Learn more