fix imbang duga wb and als
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user