fix imbang duga akru for keuntungan penggadai and added fix of previous imbang duga

This commit is contained in:
Hafifie PKB
2024-04-01 22:06:12 +08:00
parent 3be2247cb0
commit 13890767dd
7 changed files with 493 additions and 10 deletions
+40
View File
@@ -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 = [];
}