Magento-2.1 Admin-Panel Multi-Vendor – Create Custom Tab in Admin Panel in Magento 2

admin-panelmagento-2.1multi-vendor

Can anybody help me to build this tab in admin panel by custom module.

enter image description here

i want to achieve something like above picture.

Best Answer

You will need to create an custom module with etc/adminhtml/menu.xml.

For example

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
<menu>
    <add id="Vendor_Module::name"
         title="Title"
         module="Vendor_Module"
         sortOrder="9999"
         resource="Vendor_Module::name"
         action="actionpath"
    />
 </menu>
</config>

I suggest you look here for more info http://www.mage-world.com/blog/adding-new-menu-item-in-magento-2-custom-module.html