19 lines
328 B
PHP
19 lines
328 B
PHP
<?php
|
|
|
|
use frontend\components\ReceptionWidget;
|
|
|
|
?>
|
|
<?php
|
|
\frontend\assets\AppAsset::register($this);
|
|
?>
|
|
<h1>Recepció</h1>
|
|
<?php
|
|
echo ReceptionWidget::widget(['form' => $model, 'route' => ['customer/reception']]) ?>
|
|
|
|
<?php if ( !isset($model->card)){ ?>
|
|
<?= $this->render('serial', [
|
|
'model' => $model,
|
|
]) ?>
|
|
<?php } ?>
|
|
|