Skip to content

promo-pr/yii2-admin-menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Admin menu widget for Yii 2

Latest Version Total Downloads

Yii2 Asset is a wrapper for Material icons, are beautifully crafted, delightful, and easy to use in your web projects.

Install

The preferred way to install this extension is through composer.

Either run

$ php composer.phar require --prefer-dist promo-pr/yii2-admin-menu "*"

or add

"promo-pr/yii2-admin-menu": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code:

Like a AssetBundle

use promo/admin/AdminMenu;

echo AdminMenu::widget([
    'itemsLeft' => [],
    'itemsRight' => [],
]);

}