add backend transfer list changes
This commit is contained in:
24
frontend/components/ReceptionCardNumberTicketsWidget.php
Normal file
24
frontend/components/ReceptionCardNumberTicketsWidget.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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 ]);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user