baiki conflict server 24/7/2023
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?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 = [];
|
||||
}
|
||||
Reference in New Issue
Block a user