add penebusan

This commit is contained in:
hafifierahman
2020-12-10 17:03:19 +08:00
parent 70eabc85a2
commit 8fe416181a
3 changed files with 140 additions and 5 deletions
+71
View File
@@ -0,0 +1,71 @@
<?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',
// 'Tiada',
// 'GantiRugi',
// 'TrkhUpah',
// 'tagterima',
'hubungan',
// 'upahpercuma',
'upahdibayar' ,
// 'bayaranpampasan',
'historygadaian',
'pinjamanterkini',
// 'byrnonline',
// 'byrnlebih',
// 'byrnkurang',
'tarikhbyrn',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}