123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\models\Clock */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Clocks'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="box box-success">
- <div class="box-body">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'user_id',
- 'poiname',
- 'poiaddress',
- 'lng',
- 'lat',
- 'nation',
- 'province',
- 'city',
- 'district',
- 'street',
- 'street_number',
- 'remark',
- 'created_at',
- 'updated_at',
- 'status',
- 'circle_id',
- 'content:ntext',
- ],
- ]) ?>
- </div>
- </div>
|