/**
  * Execute the command
  */
 public function exec()
 {
     $name = $this->argument("name");
     $process = Links::create($name);
     //
     $this->show($process);
 }
Exemplo n.º 2
0
 /**
  * Execute the command
  */
 public function exec()
 {
     $schema = true;
     //
     $data = $this->splite(Links::ListAll());
     //
     $this->show($data);
 }