| Current Path : /var/www/html/learn/backend/modules/learning/views/learning-quiz-answer/ |
| Current File : /var/www/html/learn/backend/modules/learning/views/learning-quiz-answer/create.php |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\learning\models\LearningQuizAnswer */
$this->title = Yii::t('app', 'Create Learning Quiz Answer');
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Learning Quiz Answers'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="learning-quiz-answer-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>