|
- <?php
-
-
-
- use yii\helpers\Html;
-
-
- $this->setTitle('Modifier un produit') ;
- $this->addBreadcrumb(['label' => 'Produits', 'url' => ['index']]) ;
- $this->addBreadcrumb(['label' => $model->name, 'url' => ['update', 'id' => $model->id]]) ;
- $this->addBreadcrumb('Modifier') ;
-
- ?>
-
- <div class="product-update">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|