Files
api_arrahn/app/Gadai.php
T
LAPTOP-DGCU80CH\user1 e0b299a0f3 khazanah
2020-12-06 11:25:01 +08:00

78 lines
1.4 KiB
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Gadai extends Model
{
protected $table = 'gadai';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'kodcaw',
'norujukan',
'nopelanggan',
'nokp',
't_gadai',
'masa',
'sirig',
'nilaimarhun',
'berat',
'pinjaman',
'telahbayar',
'upahtelahbyr',
'CajTelahByr',
'ansuran',
'ansupah',
'kadarupah',
'tempoh',
't_Lelong',
't_Hapus',
'sttebus',
'terima',
'cetak',
'tnCek',
'noCek',
'bkcode',
'teller',
'pelulus',
'cancelid',
'canceltime',
'f_lulus',
'tag',
'jbg',
'bakiPJM',
'bakiupah',
'marhun' ,
'taglel' ,
't_update',
'penilai' ,
'tagserah' ,
'namapelulus' ,
'percentpinj' ,
'namateller' ,
'jumtebus' ,
'upahnotis',
'tagpalsu' ,
'tagcetak' ,
'lel1stop' ,
'tebus',
'bakihargajualan',
'hargajualan',
'upah12',
'tagkomuditi'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}