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

29 lines
588 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BarangStock extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'Kode', 'KodeBarang', 'StStock', 'HPP', 'HJual', 'HPPOld', 'HJOLD', 'Kategori'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
protected $table = 'TMLogBarangStock';
protected $primaryKey = 'Kode';
protected $keyType = 'string';
public $incrementing = false;
}