123456789101112131415161718 |
- <?php
- use yii\helpers\Html;
- /** @var yii\web\View $this */
- /** @var manager\models\Comments $model */
- $this->title = 'Create Comments';
- $this->params['breadcrumbs'][] = ['label' => 'Comments', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="comments-create">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|