update.php
544 Bytes
<?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>