Writeoff/Entities/InterestHistory.php

17 lines
349 B
PHP

<?php
namespace Modules\Writeoff\Entities;
class InterestHistory extends BaseModel
{
/**
* The attributes that are mass assignable.
*/
protected $fillable = [
'nomor_pinjaman',
'periode_bunga',
'nilai_bunga_intra',
'nilai_bunga_extra',
];
}