Lavary\Menu\Item::__get PHP Method

__get() public method

Search in meta data if a property doesn't exist otherwise return the property
public __get ( $prop ) : string
return string
    public function __get($prop)
    {
        if (property_exists($this, $prop)) {
            return $this->{$prop};
        }
        return $this->data($prop);
    }