Skip to content

Creating CLI commands in Laravel

New Course Coming Soon:

Get Really Good at Git

In this Laravel series we’ve used Artisan, the Laravel command line tool, to perform various actions:

Those are all built-in commands.

There are many, many more.

Some you’ll use often, some you’ll never use.

Run php artisan to see them all with a short explanation:

And to see how to use a command in particular, run php artisan <command> -h:

You can create your own commands, too.

Run

php artisan make:command MyCommand

This creates a file in app/Console/Commands/MyCommand.php pre-filled with some code:

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

class MyCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'app:my-command';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Command description';

    /**
     * Execute the console command.
     */
    public function handle()
    {
        //
    }
}

$signature defines how the command will be called, in this case you can run it using

php artisan app:my-command

In the handle() method you’ll write the code that runs when the command is executed.

public function handle()
{
    //
}

The simplest code could be printing something to the console, for example:

public function handle()
{
    $this->info('test!');
}

Now try running php artisan app:my-command:

You can do lots of things in a command. You can accept arguments, interactively ask something to the user using prompts to confirm or asking for input, or let them choose between different options, you can format output in different ways…

Commands are great to perform one-off tasks, maintenance, and much more. Inside a command you have access to all the goodies provided by Laravel, including your own code, classes, and more.

You can also call other commands. And commands can be ran by any part of your Laravel app.

You can also schedule commands using schedules. The server can be configured to run Laravel’s schedules, and then any schedule configured in Laravel will be executed as needed.

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!
→ Get my Laravel Handbook

Here is how can I help you: