| 123456789101112131415161718192021222324252627282930313233 | 
							- <?php
 
- use yii\helpers\Html;
 
- use yii\widgets\DetailView;
 
- /* @var $this yii\web\View */
 
- /* @var $model common\models\VipUser */
 
- $this->title = $model->id;
 
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Vip Users'), 'url' => ['index']];
 
- $this->params['breadcrumbs'][] = $this->title;
 
- ?>
 
- <div class="box box-success">
 
-     <div class="box-body">
 
-     <?= DetailView::widget([
 
-         'model' => $model,
 
-         'attributes' => [
 
-             'id',
 
-             'user_id',
 
-             'price_id',
 
-             'price',
 
-             'month',
 
-             'start_time:datetime',
 
-             'end_time:datetime',
 
-             'type',
 
-             'pay_user_id',
 
-             'created_at',
 
-             'updated_at',
 
-             'status',
 
-         ],
 
-     ]) ?>
 
-     </div>
 
- </div>
 
 
  |