Files
2024-04-19 14:04:41 +07:00

28 lines
685 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LogMutasiBarang extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'KodePeriode', 'KodeDepo', 'KodeBarang', 'StockAwal', 'Masuk', 'Keluar', 'StockAkhir', 'Opname', 'HPPAwal','HPPAkhir', 'StStock','HAvgBeli','HLastBeliAw','HLastBeliAk','HTAwal','HTAkhir','Gabung','HargaGabung'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
protected $table = 'TTLogMutasiBarang';
public $incrementing = false;
public $timestamps = false;
}