pembuatan api
This commit is contained in:
+44
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class WTD extends Model
|
||||
{
|
||||
protected $table = 'wtd';
|
||||
public $timestamps = false;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'recno',
|
||||
'tarikh',
|
||||
'batchno',
|
||||
'norujukan',
|
||||
'nokp',
|
||||
'nopelanggan',
|
||||
't_jual',
|
||||
'baki',
|
||||
'kerugian',
|
||||
'rugi',
|
||||
'ansrugi',
|
||||
'wtd',
|
||||
'hargajual',
|
||||
'pinjaman',
|
||||
'bakiupah',
|
||||
'cajlelong',
|
||||
'gst_cl',
|
||||
'norujukan2'
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes excluded from the model's JSON form.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
// protected $hidden = [];
|
||||
}
|
||||
Reference in New Issue
Block a user