Blame view

backend/views/product/create.php 607 Bytes
0a6fda24   Volodymyr   product admin vie...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?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>