Illuminate\Database\Eloquent\Model::setRelations PHP Method

setRelations() public method

Set the entire relations array on the model.
public setRelations ( array $relations )
$relations array
    public function setRelations(array $relations)
    {
        $this->relations = $relations;
        return $this;
    }
Model