create.php 628 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 = 'Create Bg';
    $this->params[ 'breadcrumbs' ][] = [
        'label' => '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>