Lavary\Menu\Item::prepend PHP Méthode

prepend() public méthode

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