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