|
- <?php
-
-
-
- use yii\helpers\Html;
-
- $this->setTitle("Modifier un accessoire") ;
- $this->addBreadcrumb(['label' => "Accessoires", 'url' => ['index']]) ;
- $this->addBreadcrumb(['label' => Html::encode($accessory->getName()), 'url' => ['update', 'id' => $accessory->getId()]]) ;
- $this->addBreadcrumb('Modifier') ;
-
- ?>
-
- <div class="accessory-update">
- <?= $this->render('_form', [
- 'accessory' => $accessory,
- 'productsArray' => $productsArray
- ]) ?>
- </div>
|