kokjan/backend/modules/gis/views/geo-features/create.php

21 lines
465 B
PHP
Executable File

<?php
use yii\helpers\Html;
/** @var yii\web\View $this */
/** @var common\models\GisGeoFeatures $model */
$this->title = 'เพิ่มรายการ';
$this->params['breadcrumbs'][] = ['label' => 'รายการ', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="gis-geo-features-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>