24 lines
688 B
PHP
24 lines
688 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Product */
|
|
|
|
$this->title = Yii::t('common/product', 'Update product:' ) . ' ' . $model->name;
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/product', 'Products'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id_product]];
|
|
$this->params['breadcrumbs'][] = Yii::t('common/product', 'Update');
|
|
?>
|
|
<div class="product-update">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
'accounts' => $accounts,
|
|
'categories' => $categories ,
|
|
]) ?>
|
|
|
|
</div>
|