22 lines
416 B
PHP
22 lines
416 B
PHP
<?php
|
|
namespace frontend\components;
|
|
|
|
use yii\base\Widget;
|
|
/**
|
|
* This is the model class for table "customer".
|
|
*
|
|
* @property string $viewFile
|
|
* @property common\models\ReceptionForm $model
|
|
* */
|
|
class ReceptionTicketWidget extends Widget{
|
|
|
|
|
|
public $viewFile = '//common/_reception_ticket';
|
|
public $model;
|
|
|
|
public function run(){
|
|
echo $this->render($this->viewFile,[ 'model' => $this->model ]);
|
|
}
|
|
|
|
|
|
} |