|
- <?php
-
-
-
- use yii\helpers\Html;
-
- $this->setTitle($title) ;
- $this->addBreadcrumb(['label' => $typeDocument.($typeDocument == 'Facture' ? 's' : ''), 'url' => ['index']]) ;
- $this->addBreadcrumb(['label' => $model->name, 'url' => ['update', 'id' => $model->id]]) ;
- $this->addBreadcrumb('Modifier') ;
-
- ?>
-
- <div class="product-update">
- <?= $this->render('_form', [
- 'action' => 'update',
- 'model' => $model,
- 'typeDocument' => $typeDocument,
- 'payment' => $payment
- ]) ?>
- </div>
|