update.php 556 B

1234567891011121314151617
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\CarouselItem */
  4. $this->title = '更新幻灯片项: ' . $model->id;
  5. $this->params['breadcrumbs'][] = ['label' => '幻灯片项', 'url' => ['index']];
  6. $this->params['breadcrumbs'][] = ['label' => $model->carousel->key, 'url' => ['/carousel/update', 'id' => $model->carousel->id]];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="box box-success">
  10. <div class="box-body">
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. ]) ?>
  14. </div>
  15. </div>