| Current Path : /var/www/html/bankrakyat/frontend/models/ |
| Current File : /var/www/html/bankrakyat/frontend/models/Umrah.php |
<?php
namespace frontend\models;
use Yii;
/**
* This is the model class for table "umrah".
*
* @property int $id
* @property string $name
* @property string $ic_no
* @property string $address
* @property string $phone
* @property string $email
* @property string $submit_at
*/
class Umrah extends \yii\db\ActiveRecord {
/**
* {@inheritdoc}
*/
public static function tableName() {
return 'umrah';
}
/**
* {@inheritdoc}
*/
public function rules() {
return [
[['name', 'ic_no', 'phone', 'email', 'address', 'reason'], 'required', 'message' => '{attribute} tidak boleh kosong'],
[['submit_at'], 'safe'],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels() {
return [
'id' => 'ID',
'name' => 'Nama',
'ic_no' => 'No. Kad Pengenalan',
'address' => 'Alamat',
'phone' => 'No. Telefon',
'email' => 'E-mel',
'submit_at' => 'Tarikh Daftar',
'reason' => 'Hasrat',
];
}
}