Files
api_arrahn/app/NotisPeringatan.php
T

40 lines
689 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 = [
'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 = [];
}