create.php
720 Bytes
<?php
use common\models\Banner;
use common\models\BannerLang;
use yii\helpers\Html;
use yii\web\View;
/**
* @var View $this
* @var Banner $model
* @var BannerLang[] $model_langs
*/
$this->title = Yii::t('app', 'Create Banner');
$this->params[ 'breadcrumbs' ][] = [
'label' => Yii::t('app', 'Banners'),
'url' => [ 'index' ],
];
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div class="banner-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
'model_langs' => $model_langs,
]) ?>
</div>