12345678910111213141516171819202122232425262728293031 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\ShareLevel */
- $this->title = $model->title;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Share Levels'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="box box-success">
- <div class="box-body">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'title',
- 'sale_rate',
- 'direct_rate',
- 'put_on_rate',
- 'price',
- 'upgrade_limit',
- 'created_at',
- 'updated_at',
- 'status',
- ],
- ]) ?>
- </div>
- </div>
|