Files
api_arrahn/app/TransaksiKeuntungan.php
T
Afiq Zakwan Hamdan a6f7ab21d4 slm
2021-04-07 12:44:01 +08:00

26 lines
528 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'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}