39 lines
855 B
PHP
39 lines
855 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\DetailView;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Ticket */
|
|
|
|
$this->title = $model->id_ticket;
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/ticket', 'Tickets'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="ticket-view">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
|
|
<?= DetailView::widget([
|
|
'model' => $model,
|
|
'attributes' => [
|
|
'id_ticket',
|
|
'id_user',
|
|
'id_ticket_type',
|
|
'id_account',
|
|
'id_discount',
|
|
'start',
|
|
'end',
|
|
'max_usage_count',
|
|
'usage_count',
|
|
'status',
|
|
'price_brutto',
|
|
'comment',
|
|
'created_at',
|
|
'updated_at',
|
|
],
|
|
]) ?>
|
|
|
|
</div>
|