/**
  * Set the relationships that should be eager loaded.
  *
  * @param  mixed  $relations
  * @return $this
  */
 public function join($relations)
 {
     $this->query->with(func_get_args());
     return $this;
 }