Artisan Console

    Artisan is the command-line interface included with Laravel. It provides a number of helpful commands that can assist you while you build your application. To view a list of all available Artisan commands, you may use the command:

    Every command also includes a "help" screen which displays and describes the command's available arguments and options. To view a help screen, precede the name of the command with help:

    1. php artisan help migrate

    Laravel Tinker is a powerful REPL for the Laravel framework, powered by the package.

    Installation

    All Laravel applications include Tinker by default. However, you may install it manually if needed using Composer:

    1. composer require laravel/tinker

    Usage

    Tinker allows you to interact with your entire Laravel application on the command line, including the Eloquent ORM, jobs, events, and more. To enter the Tinker environment, run the tinker Artisan command:

    1. php artisan tinker

    You can publish Tinker's configuration file using the vendor:publish command:

    1. php artisan vendor:publish --provider="Laravel\Tinker\TinkerServiceProvider"

    Command Whitelist

    Tinker utilizes a white-list to determine which Artisan commands are allowed to be run within its shell. By default, you may run the clear-compiled, down, env, inspire, migrate, optimize, and up commands. If you would like to white-list more commands you may add them to the commands array in your tinker.php configuration file:

    1. 'commands' => [
    2. // App\Console\Commands\ExampleCommand::class,
    3. ],

    Alias Blacklist

    Typically, Tinker automatically aliases classes as you require them in Tinker. However, you may wish to never alias some classes. You may accomplish this by listing the classes in the dont_alias array of your tinker.php configuration file:

    1. 'dont_alias' => [
    2. App\User::class,
    3. ],

    Writing Commands

    In addition to the commands provided with Artisan, you may also build your own custom commands. Commands are typically stored in the app/Console/Commands directory; however, you are free to choose your own storage location as long as your commands can be loaded by Composer.

    Generating Commands

    To create a new command, use the make:command Artisan command. This command will create a new command class in the app/Console/Commands directory. Don't worry if this directory does not exist in your application, since it will be created the first time you run the make:command Artisan command. The generated command will include the default set of properties and methods that are present on all commands:

    1. php artisan make:command SendEmails

    Command Structure

    After generating your command, you should fill in the signature and description properties of the class, which will be used when displaying your command on the list screen. The handle method will be called when your command is executed. You may place your command logic in this method.

    {tip} For greater code reuse, it is good practice to keep your console commands light and let them defer to application services to accomplish their tasks. In the example below, note that we inject a service class to do the "heavy lifting" of sending the e-mails.

    Let's take a look at an example command. Note that we are able to inject any dependencies we need into the command's handle method. The Laravel service container will automatically inject all dependencies that are type-hinted in this method's signature:

    1. <?php
    2. namespace App\Console\Commands;
    3. use App\DripEmailer;
    4. use App\User;
    5. use Illuminate\Console\Command;
    6. class SendEmails extends Command
    7. {
    8. /**
    9. * The name and signature of the console command.
    10. *
    11. * @var string
    12. */
    13. protected $signature = 'email:send {user}';
    14. /**
    15. * The console command description.
    16. *
    17. * @var string
    18. */
    19. protected $description = 'Send drip e-mails to a user';
    20. /**
    21. * Create a new command instance.
    22. *
    23. * @return void
    24. */
    25. public function __construct()
    26. parent::__construct();
    27. }
    28. /**
    29. * Execute the console command.
    30. *
    31. * @param \App\DripEmailer $drip
    32. * @return mixed
    33. */
    34. public function handle(DripEmailer $drip)
    35. {
    36. $drip->send(User::find($this->argument('user')));
    37. }
    38. }

    Closure Commands

    Closure based commands provide an alternative to defining console commands as classes. In the same way that route Closures are an alternative to controllers, think of command Closures as an alternative to command classes. Within the commands method of your app/Console/Kernel.php file, Laravel loads the routes/console.php file:

    1. /**
    2. * Register the Closure based commands for the application.
    3. *
    4. * @return void
    5. */
    6. protected function commands()
    7. {
    8. require base_path('routes/console.php');
    9. }

    Even though this file does not define HTTP routes, it defines console based entry points (routes) into your application. Within this file, you may define all of your Closure based routes using the Artisan::command method. The command method accepts two arguments: the and a Closure which receives the commands arguments and options:

    1. Artisan::command('build {project}', function ($project) {
    2. $this->info("Building {$project}!");
    3. });

    The Closure is bound to the underlying command instance, so you have full access to all of the helper methods you would typically be able to access on a full command class.

    Type-Hinting Dependencies

    In addition to receiving your command's arguments and options, command Closures may also type-hint additional dependencies that you would like resolved out of the :

    1. use App\DripEmailer;
    2. use App\User;
    3. Artisan::command('email:send {user}', function (DripEmailer $drip, $user) {
    4. $drip->send(User::find($user));
    5. });

    Closure Command Descriptions

    When defining a Closure based command, you may use the describe method to add a description to the command. This description will be displayed when you run the or php artisan help commands:

    1. Artisan::command('build {project}', function ($project) {
    2. $this->info("Building {$project}!");
    3. })->describe('Build the project');

    All user supplied arguments and options are wrapped in curly braces. In the following example, the command defines one required argument: user:

    1. /**
    2. * The name and signature of the console command.
    3. *
    4. * @var string
    5. */
    6. protected $signature = 'email:send {user}';

    You may also make arguments optional and define default values for arguments:

    1. // Optional argument...
    2. email:send {user?}
    3. // Optional argument with default value...
    4. email:send {user=foo}

    Options

    Options, like arguments, are another form of user input. Options are prefixed by two hyphens () when they are specified on the command line. There are two types of options: those that receive a value and those that don't. Options that don't receive a value serve as a boolean "switch". Let's take a look at an example of this type of option:

    1. /**
    2. * The name and signature of the console command.
    3. *
    4. * @var string
    5. */
    6. protected $signature = 'email:send {user} {--queue}';

    In this example, the —queue switch may be specified when calling the Artisan command. If the —queue switch is passed, the value of the option will be true. Otherwise, the value will be false:

    Options With Values

    Next, let's take a look at an option that expects a value. If the user must specify a value for an option, suffix the option name with a = sign:

    1. /**
    2. * The name and signature of the console command.
    3. *
    4. * @var string
    5. */
    6. protected $signature = 'email:send {user} {--queue=}';

    In this example, the user may pass a value for the option like so:

    1. php artisan email:send 1 --queue=default

    You may assign default values to options by specifying the default value after the option name. If no option value is passed by the user, the default value will be used:

    1. email:send {user} {--queue=default}

    Option Shortcuts

    To assign a shortcut when defining an option, you may specify it before the option name and use a | delimiter to separate the shortcut from the full option name:

    1. email:send {user} {--Q|queue}

    Input Arrays

    If you would like to define arguments or options to expect array inputs, you may use the * character. First, let's take a look at an example that specifies an array argument:

    1. email:send {user*}

    When calling this method, the user arguments may be passed in order to the command line. For example, the following command will set the value of user to ['foo', 'bar']:

    1. php artisan email:send foo bar

    When defining an option that expects an array input, each option value passed to the command should be prefixed with the option name:

    1. email:send {user} {--id=*}
    2. php artisan email:send --id=1 --id=2

    Input Descriptions

    You may assign descriptions to input arguments and options by separating the parameter from the description using a colon. If you need a little extra room to define your command, feel free to spread the definition across multiple lines:

    1. /**
    2. * The name and signature of the console command.
    3. *
    4. * @var string
    5. */
    6. protected $signature = 'email:send
    7. {user : The ID of the user}
    8. {--queue= : Whether the job should be queued}';

    Command I/O

    While your command is executing, you will obviously need to access the values for the arguments and options accepted by your command. To do so, you may use the argument and option methods:

    1. /**
    2. * Execute the console command.
    3. *
    4. * @return mixed
    5. */
    6. public function handle()
    7. {
    8. $userId = $this->argument('user');
    9. //
    10. }

    If you need to retrieve all of the arguments as an array, call the arguments method:

    1. $arguments = $this->arguments();

    Options may be retrieved just as easily as arguments using the option method. To retrieve all of the options as an array, call the options method:

    1. // Retrieve a specific option...
    2. $queueName = $this->option('queue');
    3. // Retrieve all options...
    4. $options = $this->options();

    If the argument or option does not exist, null will be returned.

    Prompting For Input

    1. /**
    2. *
    3. * @return mixed
    4. */
    5. public function handle()
    6. {
    7. $name = $this->ask('What is your name?');
    8. }

    The secret method is similar to ask, but the user's input will not be visible to them as they type in the console. This method is useful when asking for sensitive information such as a password:

    1. $password = $this->secret('What is the password?');

    Asking For Confirmation

    If you need to ask the user for a simple confirmation, you may use the confirm method. By default, this method will return false. However, if the user enters y or yes in response to the prompt, the method will return true.

    1. if ($this->confirm('Do you wish to continue?')) {
    2. //
    3. }

    Auto-Completion

    The anticipate method can be used to provide auto-completion for possible choices. The user can still choose any answer, regardless of the auto-completion hints:

    1. $name = $this->anticipate('What is your name?', ['Taylor', 'Dayle']);

    Alternatively, you may pass a Closure as the second argument to the anticipate method. The Closure will be called each time the user types an input character. The Closure should accept a string parameter containing the user's input so far, and return an array of options for auto-completion:

    Multiple Choice Questions

    If you need to give the user a predefined set of choices, you may use the choice method. You may set the array index of the default value to be returned if no option is chosen:

    1. $name = $this->choice('What is your name?', ['Taylor', 'Dayle'], $defaultIndex);

    In addition, the choice method accepts optional fourth and fifth arguments for determining the maximum number of attempts to select a valid response and whether multiple selections are permitted:

    1. $name = $this->choice(
    2. ['Taylor', 'Dayle'],
    3. $defaultIndex,
    4. $maxAttempts = null,
    5. $allowMultipleSelections = false
    6. );

    Writing Output

    To send output to the console, use the line, info, comment, question and error methods. Each of these methods will use appropriate ANSI colors for their purpose. For example, let's display some general information to the user. Typically, the info method will display in the console as green text:

    1. /**
    2. * Execute the console command.
    3. *
    4. * @return mixed
    5. */
    6. public function handle()
    7. {
    8. $this->info('Display this on the screen');
    9. }

    To display an error message, use the error method. Error message text is typically displayed in red:

    1. $this->error('Something went wrong!');

    If you would like to display plain, uncolored console output, use the line method:

    1. $this->line('Display this on the screen');

    Table Layouts

    The table method makes it easy to correctly format multiple rows / columns of data. Just pass in the headers and rows to the method. The width and height will be dynamically calculated based on the given data:

    1. $headers = ['Name', 'Email'];
    2. $users = App\User::all(['name', 'email'])->toArray();
    3. $this->table($headers, $users);

    Progress Bars

    For long running tasks, it could be helpful to show a progress indicator. Using the output object, we can start, advance and stop the Progress Bar. First, define the total number of steps the process will iterate through. Then, advance the Progress Bar after processing each item:

    1. $users = App\User::all();
    2. $bar = $this->output->createProgressBar(count($users));
    3. $bar->start();
    4. foreach ($users as $user) {
    5. $this->performTask($user);
    6. $bar->advance();
    7. }
    8. $bar->finish();

    For more advanced options, check out the .

    Because of the load method call in your console kernel's commands method, all commands within the app/Console/Commands directory will automatically be registered with Artisan. In fact, you are free to make additional calls to the load method to scan other directories for Artisan commands:

    1. /**
    2. * Register the commands for the application.
    3. *
    4. * @return void
    5. */
    6. protected function commands()
    7. {
    8. $this->load(__DIR__.'/Commands');
    9. $this->load(__DIR__.'/MoreCommands');
    10. // ...
    11. }

    You may also manually register commands by adding its class name to the $commands property of your app/Console/Kernel.php file. When Artisan boots, all the commands listed in this property will be resolved by the and registered with Artisan:

    1. protected $commands = [
    2. Commands\SendEmails::class
    3. ];

    Programmatically Executing Commands

    Sometimes you may wish to execute an Artisan command outside of the CLI. For example, you may wish to fire an Artisan command from a route or controller. You may use the call method on the Artisan facade to accomplish this. The call method accepts either the command's name or class as the first argument, and an array of command parameters as the second argument. The exit code will be returned:

    1. Route::get('/foo', function () {
    2. $exitCode = Artisan::call('email:send', [
    3. 'user' => 1, '--queue' => 'default'
    4. ]);
    5. //
    6. });

    Alternatively, you may pass the entire Artisan command to the call method as a string:

    1. Artisan::call('email:send 1 --queue=default');

    Using the queue method on the Artisan facade, you may even queue Artisan commands so they are processed in the background by your queue workers. Before using this method, make sure you have configured your queue and are running a queue listener:

    1. Route::get('/foo', function () {
    2. Artisan::queue('email:send', [
    3. 'user' => 1, '--queue' => 'default'
    4. ]);
    5. //
    6. });

    You may also specify the connection or queue the Artisan command should be dispatched to:

    1. Artisan::queue('email:send', [
    2. 'user' => 1, '--queue' => 'default'
    3. ])->onConnection('redis')->onQueue('commands');

    Passing Array Values

    If your command defines an option that accepts an array, you may pass an array of values to that option:

    1. Route::get('/foo', function () {
    2. $exitCode = Artisan::call('email:send', [
    3. 'user' => 1, '--id' => [5, 13]
    4. ]);
    5. });

    Passing Boolean Values

    If you need to specify the value of an option that does not accept string values, such as the —force flag on the migrate:refresh command, you should pass true or false:

    1. $exitCode = Artisan::call('migrate:refresh', [
    2. '--force' => true,
    3. ]);

    Calling Commands From Other Commands

    Sometimes you may wish to call other commands from an existing Artisan command. You may do so using the call method. This call method accepts the command name and an array of command parameters:

    1. $this->callSilent('email:send', [
    2. 'user' => 1, '--queue' => 'default'