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.
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.
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']) ?>