Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Adminmenubundle Laravel Package

alpixel/adminmenubundle

View on GitHub
Deep Wiki
Context7

AlpixelAdminMenuBundle

Latest Stable Version Build Status Build Status

Installation

  • Install the package
composer require 'alpixel/adminmenubundle'
  • Update AppKernel.php
    <?php
    // app/AppKernel.php
    
    class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            $bundles[] = new Alpixel\Bundle\AdminMenuBundle\AlpixelAdminMenuBundle();

            // ...
        }

        // ...       
    }
  • Create the menu.yml file in app/config directory, check the configuration example below
    mainMenu:
        IndexMenu_1: # The key is the name that will be displayed
            type: 'route'
            route: 'your_route'
            icon: 'fontawesome-icon' # The icon option is a css class which prefix with "fa fa-" 
            visibility: [ROLE_CUSTOMER_ADMIN] # You can add multiples roles defined in your security policy, the element doesn't appear in the DOM
            children: # With the children option you can add many sub items, visibility and icon can be defined for each element
                children_1: # The key is the name that will be displayed
                    type: 'route'
                    route: 'what_you_want_1'
                children_2:
                    type: 'route'
                    route: 'what_you_want_2'
                    parameters: # You can add static parameters to the route link
                        my_parameter_1: 'a value'
                        my_parameter_2: 3
  • To display the menu use this line in your template
    {{ knp_menu_render('main', {depth: 2}) }}
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
comsave/common
alecsammon/php-raml-parser
chrome-php/wrench
lendable/composer-license-checker
typhoon/reflection
mesilov/moneyphp-percentage
mike42/gfx-php
bookdown/themes
aura/view
aura/html
aura/cli
povils/phpmnd
nayjest/manipulator
omnipay/tests
psr-mock/http-message-implementation
psr-mock/http-factory-implementation
psr-mock/http-client-implementation
voku/email-check
voku/urlify
rtheunissen/guzzle-log-middleware