Files
api_arrahn/app/Gadai.php
T
Afiq Zakwan Hamdan a6f7ab21d4 slm
2021-04-07 12:44:01 +08:00

84 lines
1.5 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',
'upahdibayar',
'marhun',
'taglel',
't_update',
't_matang',
't_matang1',
'penilai' ,
'tagserah' ,
'namapelulus',
'percentpinj',
'namateller',
'jumtebus',
'upahnotis',
'tagpalsu',
'historygadaian',
'tagcetak',
'lel1stop',
'tebus',
'bakihargajualan',
'hargajualan',
'upah12',
'tagkomuditi',
'tempohbayar',
'lelong_tawarruq'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}