Files
api_arrahn/app/GlDetail.php
T
2021-02-24 17:00:13 +08:00

34 lines
552 B
PHP

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