ubn5/backend/modules/forum/views/thread/update.php

1 line
803 B
PHP
Raw Normal View History

2025-02-10 05:21:56 +00:00
<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model common\models\ForumThread */ $this->title = 'Update Forum Thread: ' . $model->name; $this->params['breadcrumbs'][] = ['label' => 'Forum Threads', 'url' => ['index']]; $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]]; $this->params['breadcrumbs'][] = 'Update'; ?> <div class="card"> <div class="card-header"> <h4 class="card-title"><?= $this->title ?></h4> <a class="heading-elements-toggle"><i class="fa fa-ellipsis-v font-medium-3"></i></a> <div class="heading-elements"> </div> </div> <div class="card-body"> <?= $this->render('_form', [ 'model' => $model, ]) ?> </div> </div>