Files
api_arrahn/app/GlDetail.php
T
2025-04-07 15:05:43 +08:00

36 lines
590 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',
'teller',
'date_created'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}