Writeoff/Entities/InterestHistory.php

24 lines
535 B
PHP
Raw Normal View History

2024-04-22 09:50:22 +00:00
<?php
namespace Modules\Writeoff\Entities;
class InterestHistory extends BaseModel
{
/**
* The attributes that are mass assignable.
*/
protected $fillable = [
'nomor_pinjaman',
'periode_bunga',
2024-05-28 10:36:04 +00:00
'tanggal_awal',
'tanggal_akhir',
'hari_bunga',
'nilai_bunga',
'hari_denda',
'nilai_denda',
'total_kewajiban',
'suku_bunga',
'suku_bunga_denda',
2024-04-22 09:50:22 +00:00
];
}