fix imbang duga wb and als

This commit is contained in:
fifi97
2021-05-27 02:22:15 +08:00
parent 5f50e9b8a5
commit ff1ba6802b
4 changed files with 80 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class SerahBaki extends Model
{
protected $table = 'serahbaki';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'norujukan',
'batchno',
'hargajual',
'pinjaman',
'upah',
'cajlel',
'gst_cl',
'gst_hj',
'baki',
'tarikh',
't_jual',
'nopelanggan',
'aktif'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
public $timestamps = false;
}