menu icon indicating copy to clipboard operation
menu copied to clipboard

Question about possible menu structure

Open mvysh opened this issue 9 years ago • 0 comments

Hello! Thank you for your work!

But I must admit it's not easy to figure out a lot of keypoints throughout documentation. Is it possible to create menu with such structure:

<li>
    <a href="{{ route('dashboard') }}">
        <i class="fa fa-dashboard"></i> <span>Dashboard</span>
    </a>
</li>

<li class="treeview">
    <a href="#">
        <i class="fa fa-folder"></i> <span>Examples</span>
        <i class="fa fa-angle-left pull-right"></i>
    </a>
    <ul class="treeview-menu">
        <li><a href="{{ route('test.test1') }}"><i class="fa fa-circle-o"></i> Test 1</a></li>
        <li><a href="{{ route('test.test2') }}"><i class="fa fa-circle-o"></i> Test 2</a></li>
    </ul>
</li>

mvysh avatar May 13 '16 16:05 mvysh