48 lines
681 B
PHP
48 lines
681 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TuntutBaki extends Model
|
|
{
|
|
protected $table = 'tuntutbaki';
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'RECNO',
|
|
'BATCHNO',
|
|
'JENIS',
|
|
'KODCAW',
|
|
'NORUJUKAN',
|
|
'TARIKH',
|
|
'PRKOD',
|
|
'TELLER',
|
|
'PELULUS',
|
|
'BAKIPJM',
|
|
'BAKIUPAH',
|
|
'CAJLAIN',
|
|
'CAJLELONG',
|
|
'KODGL',
|
|
'GLCODE',
|
|
'TERIMA',
|
|
'F_LULUS',
|
|
'JUMLAH',
|
|
'NOWAKIL',
|
|
'HARGAJUAL',
|
|
'gst_cl',
|
|
'gst_hj'
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
} |