<?php namespace common\models; use Yii; /** * This is the model class for table "tb_capitalletters". * * @property integer $ID * @property string $titlenamethai * @property string $titlenameeng */ class Capitalletters extends \yii\db\ActiveRecord { /** * @inheritdoc */ public static function tableName() { return 'tb_capitalletters'; } /** * @inheritdoc */ public function rules() { return [ [['titlenamethai', 'titlenameeng'], 'required'], [['titlenamethai', 'titlenameeng'], 'string', 'max' => 500], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'ID' => 'ID', 'titlenamethai' => 'คำนำหน้าภาษาไทย', 'titlenameeng' => 'คำนำหน้าภาษาอังกฤษ', ]; } }