Illuminate\Database\Eloquent\Model::setTouchedRelations PHP Метод

setTouchedRelations() публичный Метод

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