laravel command 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

<?php

namespace App\Console\Commands;

use App\Models\User;
use App\Support\DripEmailer;
use Illuminate\Console\Command;

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

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Send drip e-mails to a user';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @param  \App\Support\DripEmailer  $drip
     * @return mixed
     */
    public function handle(DripEmailer $drip)
    {
        $drip->send(User::find($this->argument('user')));
    }
}

Example 4: laravel create command tutorial

php artisan email:send 1 --queue

Example 5: laravel create command tutorial

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

Tags:

Php Example