_search.php
833 Bytes
<?php
use artbox\order\models\PaymentSearch;
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model PaymentSearch */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="payment-search">
<?php $form = ActiveForm::begin(
[
'action' => [ 'index' ],
'method' => 'get',
]
); ?>
<?= $form->field($model, 'id') ?>
<?= $form->field($model, 'sort') ?>
<?= $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>