23 lines
676 B
PHP
23 lines
676 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use frontend\components\CustomerTabWidget;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Ticket */
|
|
|
|
$this->title = "Bérlet módosítása:" . ' ' . $model->id_ticket;
|
|
$this->params['breadcrumbs'][] = ['label' =>'Befizetések', 'url' => ['index', 'number' =>$model->card->number]];
|
|
$this->params['breadcrumbs'][] = Yii::t('common/ticket', 'Update');
|
|
?>
|
|
<?php echo CustomerTabWidget::widget(['card' => $model->card,'title' => 'Bérlet módosítása'])?>
|
|
<p><?php echo "Bérlet azonosító: " . $model->id_ticket ?></p>
|
|
<div class="ticket-update">
|
|
|
|
|
|
<?= $this->render('_form_update', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|