Blame view

backend/views/label/create.php 587 Bytes
7975da13   Alexey Boroda   -Label model pret...
1
2
3
  <?php
      
      use backend\models\Label;
8af13427   Yarik   For leha commit.
4
      use backend\models\orderLabelLang;
7975da13   Alexey Boroda   -Label model pret...
5
6
7
8
9
10
      use yii\helpers\Html;
      use yii\web\View;
      
      /**
       * @var View $this
       * @var Label $model
8af13427   Yarik   For leha commit.
11
       * @var orderLabelLang[] $modelLangs
7975da13   Alexey Boroda   -Label model pret...
12
13
14
15
16
17
18
19
20
21
22
23
       */
  
  $this->title = 'Create Label';
  $this->params['breadcrumbs'][] = ['label' => 'Labels', 'url' => ['index']];
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="label-create">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
8af13427   Yarik   For leha commit.
24
          'modelLangs' => $modelLangs,
7975da13   Alexey Boroda   -Label model pret...
25
26
27
      ]) ?>
  
  </div>