_search.php 822 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model app\models\SettingSearch */
  6. /* @var $form yii\widgets\ActiveForm */
  7. ?>
  8. <div class="settings-search">
  9. <?php $form = ActiveForm::begin([
  10. 'action' => ['index'],
  11. 'method' => 'get',
  12. ]); ?>
  13. <?= $form->field($model, 'id') ?>
  14. <?= $form->field($model, 'invoce') ?>
  15. <?= $form->field($model, 'act') ?>
  16. <?= $form->field($model, 'time') ?>
  17. <?= $form->field($model, 'created_at') ?>
  18. <?php // echo $form->field($model, 'updated_at') ?>
  19. <div class="form-group">
  20. <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
  21. <?= Html::resetButton('Reset', ['class' => 'btn btn-outline-secondary']) ?>
  22. </div>
  23. <?php ActiveForm::end(); ?>
  24. </div>