Files
api_arrahn/app/TransaksiKeuntungan.php
T
2021-03-09 10:53:26 +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','keuntungan_sebenar'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}