Files
api_arrahn/app/TuntutBaki.php
2021-01-11 17:59:46 +08:00

48 lines
681 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TuntutBaki extends Model
{
protected $table = 'tuntutbaki';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recno',
'batchno',
'jenis',
'kodcaw',
'norujukan',
'tarikh',
'prkod',
'teller',
'pelulus',
'bakipjm',
'bakiupah',
'cajlain',
'cajlelong',
'kodgl',
'glcode',
'terima',
'f_lulus',
'jumlah',
'nowakil',
'hargajual',
'gst_cl',
'gst_hj'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}