4556b430
Alexey Boroda
Changes:
|
11
12
13
14
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('product', 'Products'), 'url' => ['/product/manage']];
$this->params['breadcrumbs'][] = ['label' => $model->product->name, 'url' => ['view', 'id' => $model->product->product_id]];
$this->params['breadcrumbs'][] = ['label' => Yii::t('product', 'Variants'), 'url' => Url::to(['/product/variant', 'product_id' => $model->product->product_id])];
$this->params['breadcrumbs'][] = Yii::t('product', 'Create');
|
4ca21c3e
Alexey Boroda
first commit
|
15
16
17
18
19
20
21
22
23
24
25
26
|
?>
<div class="product-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
'groups' => $groups,
'stocks' => $stocks,
]) ?>
</div>
|