buat kemaskini upah

This commit is contained in:
MUHD HAFIFIE
2021-04-16 23:34:58 +08:00
parent e350d84c27
commit b2d1f512fb
3 changed files with 73 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Pengguna extends Model
{
protected $table = 'pengguna';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'kodcaw',
'kodlaluan',
'katalaluan',
'taraf',
'nama',
'kplama',
'kpbaru',
'pinjmax',
'limittunait',
'limittunaip',
'status',
't_luput',
'flag',
'created_by',
'last_modified_by',
't_daftar',
'date_created',
'pinjmaxxtra',
'pengganti',
'khazanahtemp',
'ppo',
'settingtetap',
'autoberat',
'perubatan',
'tagperubatan',
'pptetap',
'kktetap',
'mmtetap',
'tellertetap'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}