22 lines
502 B
PHP
22 lines
502 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\CardPackage */
|
|
|
|
$this->title = Yii::t('common/card_package', 'Új kártya csomag');
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/card_package', 'Kártya csomagok'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="card-package-create">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|