yii2-netdisk/views/country/create.php

21 lines
418 B
PHP
Raw Normal View History

2024-02-09 12:15:09 +08:00
<?php
use yii\helpers\Html;
/** @var yii\web\View $this */
/** @var app\models\Country $model */
$this->title = 'Create Country';
$this->params['breadcrumbs'][] = ['label' => 'Countries', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="country-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>