Skip to content

soldierm/yii2-wizard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

yii2-wizard

Bootstrap wizard for Yii2

Usage

echo \soldierm\wizard\Wizard::widget([
    'items' => [
        [
            'label' => 'First',
            'content' => 'This is first page.'
        ],
        [
            'label' => 'Second',
            'content' => 'This is second page.'
        ],
    ],
    'previousBtnName' => 'previous',
    'nextBtnName' => 'next',
]);

View

image.png