How do you make a command in laravel? code example
Example 1: artisan make command
php artisan make:command CommandName
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));
});