baiki conflict server 24/7/2023

This commit is contained in:
hafifierahman
2023-07-24 20:31:04 +08:00
parent 8d1894accc
commit efa191895f
4 changed files with 92 additions and 3 deletions
+35
View File
@@ -0,0 +1,35 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BayaranHutang extends Model
{
protected $table = 'bayaran_hutang';
// public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'serialno',
'tarikh',
'bayaran',
'ID',
'IDPelulus',
'nota',
'rechutang'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}