create.php 558 B

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