create.php 376 B

123456789101112131415161718
  1. <?php
  2. use yii\helpers\Html;
  3. /** @var yii\web\View $this */
  4. /** @var manager\models\Comments $model */
  5. $this->title = 'Create Comments';
  6. $this->params['breadcrumbs'][] = ['label' => 'Comments', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="comments-create">
  10. <?= $this->render('_form', [
  11. 'model' => $model,
  12. ]) ?>
  13. </div>