19 lines
508 B
19 lines
508 B
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\modules\goods\models\ars\Attribute */
|
|
|
|
$this->title = '编辑规格: ' . $model->name;
|
|
$this->params['breadcrumbs'][] = ['label' => '规格管理', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
|
|
$this->params['breadcrumbs'][] = 'Update ';
|
|
?>
|
|
<div class="attribute-update">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|