Files
api_arrahn/app/GlCode.php
T
2021-03-11 09:04:31 +08:00

27 lines
490 B
PHP

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