Blame view

backend/views/customer/update.php 680 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
  <?php
21aedefe   Yarik   Another one admin...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
      
      use yii\helpers\Html;
      
      /**
       * @var yii\web\View $this
       * @var common\models\Customer $model
       */
      $this->title = 'Update Customer: ' . $model->name;
      $this->params[ 'breadcrumbs' ][] = [
          'label' => 'Customers',
          'url'   => [ 'index' ],
      ];
      $this->params[ 'breadcrumbs' ][] = [
          'label' => $model->name,
          'url'   => [
              'view',
              'id' => $model->id,
          ],
      ];
      $this->params[ 'breadcrumbs' ][] = 'Update';
d8c1a2e0   Yarik   Big commit artbox
22
23
  ?>
  <div class="customer-update">
21aedefe   Yarik   Another one admin...
24
      
d8c1a2e0   Yarik   Big commit artbox
25
      <h1><?= Html::encode($this->title) ?></h1>
21aedefe   Yarik   Another one admin...
26
      
d8c1a2e0   Yarik   Big commit artbox
27
28
29
30
31
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
  </div>