making commands laravel code example
Example 1: laravel create command tutorial
email:send {user?}
email:send {user=foo}
Example 2: 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 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
{
protected $signature = 'email:send {user}';
protected $description = 'Send drip e-mails to a user';
public function __construct()
{
parent::__construct();
}
public function handle(DripEmailer $drip)
{
$drip->send(User::find($this->argument('user')));
}
}