_search.php 644 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model app\models\MenuToTheUserSearch */
  6. /* @var $form yii\widgets\ActiveForm */
  7. ?>
  8. <div class="menu-to-the-user-search">
  9. <?php $form = ActiveForm::begin([
  10. 'action' => ['index'],
  11. 'method' => 'get',
  12. ]); ?>
  13. <?= $form->field($model, 'id') ?>
  14. <?= $form->field($model, 'menu_name') ?>
  15. <div class="form-group">
  16. <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
  17. <?= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?>
  18. </div>
  19. <?php ActiveForm::end(); ?>
  20. </div>