/**
  * Get column name by order column index.
  *
  * @param int $column
  * @return mixed
  */
 protected function getColumnName($column)
 {
     $name = $this->request->columnName($column) ?: (isset($this->columns[$column]) ? $this->columns[$column] : $this->columns[0]);
     return in_array($name, $this->extraColumns, true) ? $this->columns[0] : $name;
 }