123456789101112131415161718192021222324252627 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\Package */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Packages'), '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',
- 'order_id',
- 'order_sku_ids',
- 'no',
- 'com',
- 'status',
- ],
- ]) ?>
- </div>
- </div>
|