fitness-web/frontend/components/ReceptionCustomerWidget.php

22 lines
420 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 ReceptionCustomerWidget extends Widget{
public $viewFile = '//common/_reception_customer';
public $model;
public function run(){
echo $this->render($this->viewFile,[ 'model' => $this->model ]);
}
}