Files
api_arrahn/app/CawanganNotis.php
T
2023-12-18 17:05:01 +08:00

28 lines
546 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CawanganNotis extends Model
{
protected $table = 'cawangan_notis';
public $timestamps = false;
protected $primaryKey = 'id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'id','notis_id','kodcaw','peringatan','daritempoh','hinggatempoh','status'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}