PHP code example of dowilcox / knp-menu-laravel

1. Go to this page and download the library: Download dowilcox/knp-menu-laravel library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dowilcox / knp-menu-laravel example snippets


Dowilcox\KnpMenu\MenuServiceProvider::class,

'Menu' => Dowilcox\KnpMenu\Facades\Menu::class,

$menu = Menu::create('main-menu', ['childrenAttributes' => ['class' => 'nav']]);

$menu->addChild('Home', ['uri' => url('/')]);
$menu->addChild('Users', ['uri' => route('admin.users.index')]);
$menu->addChild('Roles', ['uri' => route('admin.roles.index')]);
$menu->addChild('Menu', ['uri' => url('menu')]);

echo Menu::render($menu);
bash
php artisan vendor:publish