Files
api_arrahn/app/TransaksiKeuntungan.php
T
LAPTOP-DGCU80CH\user1 361b107531 add rebet api
2020-11-09 12:28:00 +08:00

26 lines
508 B
PHP

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