Blame view

backend/views/admin-menu/update.php 544 Bytes
b0f143c3   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php
  
  use yii\helpers\Html;
  
  /* @var $this yii\web\View */
  /* @var $model backend\models\AdminMenu */
  
  $this->title = Yii::t('app', 'Update') . ': ' . $model->name;
  $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Admin Menus'), 'url' => ['index']];
  $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->admin_menu_id]];
  $this->params['breadcrumbs'][] = Yii::t('app', 'Update');
  ?>
  <div class="admin-menu-update">
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
  </div>