Blame view

backend/views/orders/create.php 423 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  use yii\helpers\Html;
  use yii\grid\GridView;
  use yii\bootstrap\ActiveForm;
  
  
  $this->title = 'Добавить товар в заказ';
  $this->params['breadcrumbs'][] = ['label' => 'Pages', 'url' => ['index']];
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  
  <div class="orders-create">
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  </div>