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
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Notis extends Model
{
protected $table = 'notis';
public $timestamps = false;
protected $primaryKey = 'id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'id','tarikh_notis','daritempoh','hinggatempoh','sts_notis','peringatan'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}