update.php 256 B

123456789101112131415
  1. <?php
  2. /* @var $this yii\web\View */
  3. $this->title = '修改规则';
  4. $this->params['breadcrumbs'][] = ['label' => 'rules', 'url' => ['index']];
  5. $this->params['breadcrumbs'][] = 'Update Rule';
  6. ?>
  7. <?= $this->render('_form', [
  8. 'model' => $model
  9. ]) ?>