|
- <?php
-
- use yii\helpers\Html;
-
- /* @var $this yii\web\View */
- /* @var $model app\models\Produit */
-
- $this->title = 'Modifier une commande récurrente';
- $this->params['breadcrumbs'][] = ['label' => 'Commandes récurrentes', 'url' => ['index']];
- $this->params['breadcrumbs'][] = 'Modifier';
- ?>
- <div class="commandeauto-update">
- <h1><?= Html::encode($this->title) ?></h1>
-
- <?= $this->render('_form', [
- 'model' => $model,
- 'produits' => $produits
- ]) ?>
- </div>
|