fix imbang duga akru for keuntungan penggadai and added fix of previous imbang duga
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class AkruNetPecahan extends Model
|
||||
{
|
||||
protected $table = 'akru_net_pecahan';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable =
|
||||
[
|
||||
'id',
|
||||
'tahun',
|
||||
'bulan',
|
||||
'persen_semasa',
|
||||
'ujrah_semasa',
|
||||
'persen_sebelum',
|
||||
'ujrah_sebelum',
|
||||
'keuntungan_semasa_1persen',
|
||||
'keuntungan_semasa_ujrah',
|
||||
'baki_keun_blm_byr_1persen',
|
||||
'baki_keun_blm_byr_ujrah',
|
||||
'pend_akru_1persen',
|
||||
'pend_akru_ujrah',
|
||||
];
|
||||
|
||||
public $timestamps = false;
|
||||
/**
|
||||
* The attributes excluded from the model's JSON form.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
// protected $hidden = [];
|
||||
}
|
||||
Reference in New Issue
Block a user