Newer
Older
<?php
namespace Spg\Test1\Console;
use Illuminate\Console\Command;
class Test1Command extends Command
{
protected $signature = 'test1';
protected $description = 'Prints "Hello World" from the test-1 package';
public function handle()
{
$this->info('Hello World from the test-1 package!');
}
}