Files
api_arrahn/app/NotisPeringatan.php
2024-01-04 15:53:53 +08:00

48 lines
833 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class NotisPeringatan extends Model
{
protected $table = 'notisperingatan';
public $timestamps = true;
protected $primaryKey = 'id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'id',
'notis_id',
'tarikh_notis',
'kodcaw',
'norujukan',
'nokp',
'jbg',
'kadarupah',
'nilaimarhun',
'pinjaman',
'bakiupah',
'berat',
'marhun',
'percent',
'peringatan',
'tarikhnotis1',
'tarikhnotis2',
'fasa',
'tmatang',
'tmatang1',
'tagsurat'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}