public function orderBy($column, $direction = 'asc')
 {
     $this->model = $this->model->orderBy($column, $direction);
     return $this;
 }