Answers for "how to make artisan command in laravel"

PHP
0

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));
});
Posted by: Guest on December-07-2020
-1

laravel create command tutorial

/**
 * The name and signature of the console command.
 *
 * @var string
 */
protected $signature = 'email:send {user}';
Posted by: Guest on December-07-2020

Code answers related to "how to make artisan command in laravel"

Browse Popular Code Answers by Language