/**
  * Add data to the table.
  *
  * @param $key
  * @param $value
  * @return $this
  */
 public function addTableData($key, $value)
 {
     $this->table->addData($key, $value);
     return $this;
 }