1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model plugins\donation\models\Donation */
- $this->title = $model->name;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Donations'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="donation-view">
- <p>
- <?= Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
- <?= Html::a(Yii::t('app', 'Delete'), ['delete', 'id' => $model->id], [
- 'class' => 'btn btn-danger',
- 'data' => [
- 'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'),
- 'method' => 'post',
- ],
- ]) ?>
- </p>
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'name',
- 'money',
- 'remark',
- 'created_at',
- 'updated_at',
- ],
- ]) ?>
- </div>
|