Files
Afiq Zakwan Hamdan d576557467 advansur
2021-04-30 17:43:46 +08:00

44 lines
762 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Advansur extends Model
{
protected $table = 'advansur';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'tarikh',
'noresit',
'norujukan',
'nopelanggan',
'nilaimarhun',
'pinjaman',
'kadarupah',
'glcode',
'upahsebenar',
'upahDibayar',
'teller',
'prkod',
'jbg',
'nowakil',
'hubungan',
'status',
'historygadaian'
];
public $timestamps = false;
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}