Files
api_arrahn/app/Tebus.php
T

64 lines
1.1 KiB
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Tebus extends Model
{
protected $table = 'tebus';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'sirit',
'kodcaw',
'norujukan',
'nopelanggan',
'jenisbyr',
'jenistebus',
'cajcek',
'glcode',
't_tebus',
'jbg',
'kadarupah',
'ansuran',
'nilaimarhun',
'addpinjaman',
'pinjaman',
'bakipjm',
'bakiupah',
'terima',
'cetak',
'teller',
'pelulus',
'pelulust',
'f_lulus',
'nowakil',
'prkod',
'cancelid',
'canceltime',
'kodgl',
'upahasal',
'rebate',
'marhuntebus',
'hubungan',
'upahdibayar' ,
'historygadaian',
'pinjamanterkini',
'tarikhbyrn',
'ujrah',
'onepercent'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}