IOP-Patho/frontend/models/SearchForm.php

18 lines
396 B
PHP
Raw Permalink Normal View History

2025-07-17 08:28:28 +00:00
<?php
namespace frontend\models;
class SearchForm extends \yii\base\Model
{
public $hospital;
public $region;
public $type;
public function attributeLabels()
{
return [
'hospital' => 'โรงพยาบาล',
'region' => 'เขตสุขภาพ',
'type' => 'ชนิดการส่งตรวจ'
];
}
}