18 lines
734 B
PHP
18 lines
734 B
PHP
<?php
|
|
use frontend\components\ReceptionCardNumberWidget;
|
|
use frontend\components\ReceptionMenuWidget;
|
|
use frontend\models\ReceptionForm;
|
|
use frontend\components\ReceptionCardNumberTicketsWidget;
|
|
use yii\base\Widget;
|
|
?>
|
|
<div class='row'>
|
|
<div class='col-md-3'>
|
|
<?php echo ReceptionMenuWidget::widget( [ 'customer' => $customer, 'card' => $card] ) ?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
<?php echo ReceptionCardNumberWidget::widget( [ 'customer' => $customer, 'card' =>$card, 'route' => ['customer/reception'] ] )?>
|
|
</div>
|
|
<div class='col-md-4'>
|
|
<?php echo ReceptionCardNumberTicketsWidget::widget([ 'tickets' => $tickets, 'customer' => $customer, 'card' =>$card, 'route' => ['customer/reception'] ] ) ?>
|
|
</div>
|
|
</div>
|