create.php 435 B

1234567891011121314151617
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Carousel */
  4. $this->title = Yii::t('backend', 'Create {modelClass}', [
  5. 'modelClass' => 'Carousel',
  6. ]);
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('backend', 'Carousels'), 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="carousel-create">
  11. <?php echo $this->render('_form', [
  12. 'model' => $model
  13. ]) ?>
  14. </div>