123456789101112131415161718192021222324 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\ArticleModule */
- $this->title = $model->name;
- $this->params['breadcrumbs'][] = ['label' => 'Article Modules', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?= $this->render('../site/view_menu', [ 'model' => $model]) ?><div class="box box-success">
- <div class="box-body">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'name',
- 'title',
- ],
- ]) ?>
- </div>
- </div>
|