44 lines
762 B
PHP
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 = [];
|
|
} |