Files
hafifierahman 232aa41f0e pembuatan api
2020-12-28 18:36:49 +08:00

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 = [];
}