LMongo\Eloquent\Model::setRelation PHP Method

setRelation() public method

Set the specific relationship in the model.
public setRelation ( string $relation, mixed $value ) : Model
$relation string
$value mixed
return Model
    public function setRelation($relation, $value)
    {
        $this->relations[$relation] = $value;
        return $this;
    }
Model