44 lines
641 B
PHP
44 lines
641 B
PHP
<?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 = [];
|
|
} |