| 123456789101112131415161718192021222324 |
- <?php
- use yii\helpers\Html;
- use yii\bootstrap\Alert;
- /* @var $this yii\web\View */
- /* @var $model app\models\Lots */
- $this->title = Yii::t('app', 'CreateLot ID');
- $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Lots ID'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="panel panel-primary">
- <div class="panel-heading"><span class="glyphicon glyphicon-inbox"></span><strong> <?= Html::encode($this->title) ?></strong></div>
- <div class="panel-body">
- <div class="lots-create">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
- </div>
- </div>
|