/**
  * Execute the command
  */
 public function exec()
 {
     $schema = true;
     //
     $data = $this->splite(Seeds::ListAll());
     //
     $this->show($data);
 }
 /**
  * Execute the command
  */
 public function exec()
 {
     $name = $this->argument('name');
     $tableName = $this->argument('tableName');
     //
     $process = Seeds::add($name, $tableName);
     //
     $this->show($process);
 }
 /**
  * Execute the command
  */
 public function exec()
 {
     $process = Seeds::exec();
     //
     $this->show($process);
 }