LMongo\Eloquent\Model::__unset PHP Method

__unset() public method

Unset an attribute on the model.
public __unset ( string $key ) : void
$key string
return void
    public function __unset($key)
    {
        unset($this->attributes[$key]);
        unset($this->relations[$key]);
    }
Model