54 lines
925 B
PHP
54 lines
925 B
PHP
<?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 = [];
|
|
} |