_search.php 846 Bytes
<?php
    
    use yii\helpers\Html;
    use yii\widgets\ActiveForm;
    
    /* @var $this yii\web\View */
    /* @var $model common\models\LabelSearch */
    /* @var $form yii\widgets\ActiveForm */
?>

<div class="label-search">
    
    <?php $form = ActiveForm::begin(
        [
            'action' => [ 'index' ],
            'method' => 'get',
        ]
    ); ?>
    
    <?= $form->field($model, 'id') ?>
    
    <?= $form->field($model, 'sort') ?>
    
    <?= $form->field($model, 'value') ?>
    
    <?= $form->field($model, 'status')
             ->checkbox() ?>
  
  <div class="form-group">
      <?= Html::submitButton(Yii::t('order', 'Search'), [ 'class' => 'btn btn-primary' ]) ?>
      <?= Html::resetButton(Yii::t('order', 'Reset'), [ 'class' => 'btn btn-default' ]) ?>
  </div>
    
    <?php ActiveForm::end(); ?>

</div>