add product category crud + model ( termék kategória )

This commit is contained in:
2015-09-21 10:35:15 +02:00
parent 8890727862
commit 6b81ced4ba
13 changed files with 537 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\ProductCategory */
$this->title = Yii::t('common/product_category', 'Create Product Category');
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/product_category', 'Product Categories'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="product-category-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>