LMongo\Eloquent\Model::syncOriginal PHP Method

syncOriginal() public method

Sync the original attributes with the current.
public syncOriginal ( ) : Model
return Model
    public function syncOriginal()
    {
        $this->original = $this->attributes;
        return $this;
    }
Model