run artisan command from commands code example
Example 1: laravel create command tutorial
Artisan::command('build {project}', function ($project) {
$this->info("Building {$project}!");
})->describe('Build the project');
Example 2: laravel create command tutorial
// Optional argument...
email:send {user?}
// Optional argument with default value...
email:send {user=foo}