Files
api_arrahn/app/GlDetail.php
T
2021-01-26 05:57:53 +08:00

40 lines
647 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AnsRugi extends Model
{
protected $table = 'gldetail';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'kodcaw',
'tarikh',
'dtacct',
'ktacct',
'descpt',
'acttype',
'fracttype',
'amaun',
'teller',
'pelulus',
'terima',
'jenisbyr',
'bkcode',
'nocek'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}