buat kemaskini upah
This commit is contained in:
@@ -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 = [];
|
||||
}
|
||||
Reference in New Issue
Block a user