laravel command line code example

Example 1: how create new command in laravel

php artisan make:command SendEmails

Example 2: artisan make command

php artisan make:command CommandName

Example 3: laravel create command tutorial

// Optional argument...
email:send {user?}

// Optional argument with default value...
email:send {user=foo}

Example 4: 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));
});

Tags:

Php Example