laravel new command 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
$arguments = $this->arguments();
Example 4: laravel create command tutorial
Artisan::command('build {project}', function ($project) {
$this->info("Building {$project}!");
})->describe('Build the project');
Example 5: laravel create command tutorial
email:send {user?}
email:send {user=foo}
Example 6: laravel create command tutorial
protected $signature = 'email:send {user} {--queue}';