1234567891011121314151617181920212223242526272829 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\DataCount */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Data Counts'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="box box-success">
- <div class="box-body">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'user_id',
- 'date',
- 'person_count',
- 'team_count',
- 'created_at',
- 'updated_at',
- 'status',
- ],
- ]) ?>
- </div>
- </div>
|