Xpressengine\Menu\Models\Menu::toArray PHP 메소드

toArray() 공개 메소드

Convert the model instance to an array.
public toArray ( ) : array
리턴 array
    public function toArray()
    {
        $tree = $this->getTree();
        return array_merge(parent::toArray(), ['items' => $tree, 'entity' => 'menu', 'itemCount' => $tree->size()]);
    }