Files
api_arrahn/app/Penghutang.php
2023-07-24 20:31:04 +08:00

35 lines
548 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Penghutang extends Model
{
protected $table = 'penghutang';
// public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recno',
'tarikh',
'nota',
'IDPelulus',
'ID',
'Hutang',
'baki_hutang'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}