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;
|
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,
]
) ?>
|