2025-04-10 23:19:13 +08:00

22 lines
452 B
PHP
Executable File

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\models\AuthItemChild */
$this->title = 'Create Auth Item Child';
$this->params['breadcrumbs'][] = ['label' => 'Auth Item Children', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="auth-item-child-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>