LMongo\Eloquent\Model::__get PHP 메소드

__get() 공개 메소드

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