43 lines
632 B
PHP
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 = [];
|
|
} |