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

setTouchedRelations() public method

Set the relationships that are touched on save.
public setTouchedRelations ( array $touches )
$touches array
    public function setTouchedRelations(array $touches)
    {
        $this->touches = $touches;
        return $this;
    }
Model