<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model backend\models\PointVente */ $this->title = 'Modifier un point de vente'; $this->params['breadcrumbs'][] = ['label' => 'Points de vente', 'url' => ['index']]; $this->params['breadcrumbs'][] = ['label' => Html::encode($model->nom), 'url' => ['update', 'id' => $model->id]]; $this->params['breadcrumbs'][] = 'Modifier'; ?> <div class="point-vente-update"> <h1><?= Html::encode($this->title) ?></h1> <?= $this->render('_form', [ 'model' => $model, ]) ?> </div>