Lavary\Menu\Item::prepend PHP Method

prepend() public method

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