Files
api_arrahn/app/SerahBaki.php
T
2021-05-27 02:22:15 +08:00

42 lines
667 B
PHP

<?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;
}