create.php
607 Bytes
<?php
use yii\helpers\Html;
/**
* @var \yii\web\View $this
* @var \common\models\Objectkb $model
* @var \common\models\ObjectkbLang $modelLangs
* @var \common\models\Slider[] $sliders
*/
$this->title = Yii::t('app', 'Create Product');
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Products'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="objectkb-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
'modelLangs' => $modelLangs,
]) ?>
</div>