Blame view

backend/views/admin-menu/update.php 563 Bytes
14a09168   Alex Savenko   init 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>