Blame view

backend/views/order/create.php 422 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
2
3
4
5
6
7
8
9
10
11
  <?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;
  ?>
  
8af13427   Yarik   For leha commit.
12
  <div class="order-create">
d8c1a2e0   Yarik   Big commit artbox
13
14
15
16
17
18
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  </div>