24 lines
605 B
PHP
24 lines
605 B
PHP
<?php
|
|
use frontend\components\ReceptionMenuWidget;
|
|
use frontend\components\ReceptionCardNumberWidget;
|
|
use yii\base\Widget;
|
|
|
|
|
|
|
|
?>
|
|
|
|
<h1>Recepció</h1>
|
|
<?php
|
|
|
|
?>
|
|
<?php // echo $this->render('_form_reception', [ 'model' => $model ]); ?>
|
|
<div class='row'>
|
|
<div class='col-md-3'>
|
|
<?php echo ReceptionMenuWidget::widget( [ 'customer' => $model->customer, 'card' =>$model->card ] ) ?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
<?php echo ReceptionCardNumberWidget::widget([ 'customer' => $model->customer, 'card' =>$model->card, 'route' => ['customer/reception'] ] )?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
</div>
|
|
</div>
|