Files
2021-01-11 17:59:46 +08:00

43 lines
632 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class HapusKira extends Model
{
protected $table = 'hapuskira';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recno',
'kodcaw',
'batchno',
'norujukan',
'tarikh',
'kadarupah',
'amaun',
'n_marhun',
'semua',
'nota' ,
'prkod',
'teller',
'pelulus',
'terima',
'bakipjm',
'bakiupah',
'kodgl'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}