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

29 lines
646 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Barang extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'kode', 'nama', 'kodesatuan', 'kodepabrik', 'kodekelompok', 'stGenerik', 'stNarkotik', 'stPsikotropik', 'stAntibiotik','stSitostatika', 'stFornas'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
protected $table = 'TMLogBarang';
protected $primaryKey = 'Kode';
protected $keyType = 'string';
public $incrementing = false;
}