kokjan/backend/modules/gis/views/gis-base/update.php

22 lines
565 B
PHP
Executable File

<?php
use yii\helpers\Html;
/** @var yii\web\View $this */
/** @var common\models\GisBase $model */
$this->title = 'แก้ไข: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'ชั้นข้อมูล', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'แก้ไข';
?>
<div class="gis-base-update">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>