Code sample
in the following sample the second step is configured as skipable.
use buttflattery\formwizard\FormWizard;
echo FormWizard::widget([
'steps'=>[
[
'model'=>$shootsModel,
'title'=>'My Shoots',
'description'=>'Add your shoots',
'formInfoText'=>'Fill all fields'
],
[
'model'=> $shootTagModel,
'title'=>'My Shoots',
'isSkipable'=>true,
'description'=>'Add your shoots',
'formInfoText'=>'Fill all fields'
],
]
]);