40 lines
690 B
PHP
40 lines
690 B
PHP
<?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 = [];
|
|
}
|