laravel make commands code example

Example 1: how create new command in laravel

php artisan make:command SendEmails

Example 2: laravel create command tutorial

$arguments = $this->arguments();

Example 3: laravel create command tutorial

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

Example 4: laravel create command tutorial

use App\Models\User;
use App\Support\DripEmailer;

Artisan::command('email:send {user}', function (DripEmailer $drip, $user) {
    $drip->send(User::find($user));
});

Example 5: laravel create command tutorial

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