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

21 lines
474 B
PHP
Executable File

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