LMongo\Eloquent\Model::__get PHP Method

__get() public method

Dynamically retrieve attributes on the model.
public __get ( string $key ) : mixed
$key string
return mixed
    public function __get($key)
    {
        return $this->getAttribute($key);
    }
Model