24 lines
448 B
PHP
24 lines
448 B
PHP
<?php
|
|
namespace frontend\components;
|
|
|
|
use yii\base\Widget;
|
|
|
|
class ReceptionCardNumberTicketsWidget extends Widget{
|
|
|
|
public $number;
|
|
public $route;
|
|
|
|
public $customer;
|
|
public $card;
|
|
|
|
public $tickets;
|
|
|
|
public $viewFile = '//common/_card_number_tickets';
|
|
|
|
|
|
public function run(){
|
|
echo $this->render($this->viewFile,[ 'tickets' => $this->tickets, 'card' => $this->card, 'customer' =>$this->customer , 'route' => $this->route ]);
|
|
}
|
|
|
|
|
|
} |