update.php 503 B

1234567891011121314151617
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\NavItem */
  4. $this->title = '更新导航项' . ' ' . $model->id;
  5. $this->params['breadcrumbs'][] = ['label' => '导航', 'url' => ['/nav/index']];
  6. $this->params['breadcrumbs'][] = ['label' => $model->nav->key, 'url' => ['update', 'id' => $model->nav->id]];
  7. $this->params['breadcrumbs'][] = Yii::t('backend', 'Update');
  8. ?>
  9. <div class="nav-item-update">
  10. <?php echo $this->render('_form', [
  11. 'model' => $model,
  12. ]) ?>
  13. </div>