Files
api_arrahn/app/Gadai.php
T
LAPTOP-DGCU80CH\user1 4f463412b0 add api
2020-11-08 15:59:21 +08:00

73 lines
1.3 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',
'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',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}