<?php use Illuminate\Support\ServiceProvider; use Spg\Test1\Console\Test1Command; class Test1ServiceProvider extends ServiceProvider { public function boot() { $this->commands([ Test1Command::class, ]); } }