create.php 669 B

123456789101112131415161718192021222324
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\bootstrap\Alert;
  4. /* @var $this yii\web\View */
  5. /* @var $model app\models\Lots */
  6. $this->title = Yii::t('app', 'CreateLot ID');
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Lots ID'), 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="panel panel-primary">
  11. <div class="panel-heading"><span class="glyphicon glyphicon-inbox"></span><strong> <?= Html::encode($this->title) ?></strong></div>
  12. <div class="panel-body">
  13. <div class="lots-create">
  14. <?= $this->render('_form', [
  15. 'model' => $model,
  16. ]) ?>
  17. </div>
  18. </div>
  19. </div>