artisan thinker echo Hash::make returning nothing in console code example
Example 1: 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 2: laravel create command tutorial
php artisan email:send 1 --queue