Files
api_arrahn/app/TransaksiKeuntungan.php
T
LAPTOP-DGCU80CH\user1 a7e4c4c4b1 api tebus
2020-11-18 09:15:27 +08:00

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