tambah function call center

This commit is contained in:
Nur Izzati Zulkifli
2023-12-18 17:05:01 +08:00
parent 0a4bb2f024
commit 029863a845
6 changed files with 423 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class NotisPeringatan extends Model
{
protected $table = 'notisperingatan';
public $timestamps = false;
protected $primaryKey = 'id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'notis_id',
'kodcaw',
'norujukan',
'nokp',
'jbg',
'kadarupah',
'nilaimarhun',
'pinjaman',
'bakiupah',
'berat',
'marhun',
'percent',
'peringatan',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}