You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

create.php 442B

8 yıl önce
8 yıl önce
123456789101112131415161718192021
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model backend\models\PointVente */
  5. $this->title = 'Ajouter un point de vente';
  6. $this->params['breadcrumbs'][] = ['label' => 'Points de vente', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = 'Ajouter';
  8. ?>
  9. <div class="point-vente-create">
  10. <h1><?= Html::encode($this->title) ?></h1>
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. ]) ?>
  14. </div>