Blame view

views/brand-size/create.php 770 Bytes
e1048e52   Alexey Boroda   -Brand size start...
1
  <?php
20cfd476   Alexey Boroda   -Sizes in process
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
      
      use artweb\artbox\ecommerce\models\BrandSize;
      use yii\helpers\Html;
      use yii\web\View;
      
      /**
       * @var View      $this
       * @var BrandSize $model
       * @var array     $categories
       * @var array     $brands
       */
      
      $this->title = Yii::t('app', 'Create Brand Size');
      $this->params[ 'breadcrumbs' ][] = [
          'label' => Yii::t('app', 'Brand Sizes'),
          'url'   => [ 'index' ],
      ];
      $this->params[ 'breadcrumbs' ][] = $this->title;
e1048e52   Alexey Boroda   -Brand size start...
20
21
22
  ?>
  <div class="brand-size-create">
  
20cfd476   Alexey Boroda   -Sizes in process
23
24
25
26
27
28
29
30
31
32
    <h1><?= Html::encode($this->title) ?></h1>
      
      <?= $this->render(
          '_form',
          [
              'model'      => $model,
              'categories' => $categories,
              'brands'     => $brands,
          ]
      ) ?>
e1048e52   Alexey Boroda   -Brand size start...
33
34
  
  </div>