skill category

This commit is contained in:
andrey
2021-06-08 17:05:54 +03:00
parent 9f1db817a5
commit 23773eff4e
13 changed files with 487 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\SkillCategory */
$this->title = 'Create Skill Category';
$this->params['breadcrumbs'][] = ['label' => 'Skill Categories', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="skill-category-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>