view.php 732 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\ShareLevel */
  6. $this->title = $model->title;
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Share Levels'), 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="box box-success">
  11. <div class="box-body">
  12. <?= DetailView::widget([
  13. 'model' => $model,
  14. 'attributes' => [
  15. 'id',
  16. 'title',
  17. 'sale_rate',
  18. 'direct_rate',
  19. 'put_on_rate',
  20. 'price',
  21. 'upgrade_limit',
  22. 'created_at',
  23. 'updated_at',
  24. 'status',
  25. ],
  26. ]) ?>
  27. </div>
  28. </div>