|
- <?php
-
-
-
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
- use yii\helpers\ArrayHelper ;
- use common\models\Producer ;
-
- $this->setTitle('Ajouter producteur') ;
- $this->addBreadcrumb(['label' => 'Producteurs', 'url' => ['index']]) ;
- $this->addBreadcrumb('Ajouter') ;
-
- ?>
-
- <div class="producer-create">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|