how to create custom artisan command in laravel code example
Example 1: how create new command in laravel
php artisan make:command SendEmails
Example 2: laravel create command tutorial
Artisan::command('build {project}', function ($project) {
$this->info("Building {$project}!");
})->describe('Build the project');