pembuatan api
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<?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 = [];
|
||||
}
|
||||
Reference in New Issue
Block a user