Lavary\Menu\Item::prepend PHP 메소드

prepend() 공개 메소드

Prepends text or html to the item
public prepend ( $html ) : Lavary\Menu\Item
리턴 Lavary\Menu\Item
    public function prepend($html)
    {
        $this->title = $html . $this->title;
        return $this;
    }