Skip to content

CeeFee/yii2-layui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Layui Extension for Yii 2


This is the Layui extension for Yii framework 2.0. It encapsulates Layui components and plugins in terms of Yii widgets, and thus makes using Layui components/plugins in Yii applications extremely easy.

For license information check the LICENSE-file.

Latest Stable Version Total Downloads

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist ceefee/yii2-layui

or add

"ceefee/yii2-layui": "~1.0.0"

to the require section of your composer.json file.

Usage

For example, the following single line of code in a view file would render a Layui Progress plugin:

<?= ceefee\layui\Progress::widget(['percent' => 60, 'label' => 'test']) ?>