Files
api_arrahn/app/TransaksiKeuntungan.php
T
Afiq Zakwan Hamdan 101a52b525 reducing method
2021-04-20 14:07:53 +08:00

26 lines
547 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TransaksiKeuntungan extends Model
{
protected $table = 'transaksi_keuntungan';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'norujukan','bayaran_keuntungan','tarikh_bayaran','kodcaw','bayaran_pembiayaan','keuntungan_rebet'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}