Files
alliance-services/app/Models/Lookup/ItemLookup.php
2026-03-10 02:10:28 -05:00

41 lines
709 B
PHP

<?php
namespace App\Models\Lookup;
use Illuminate\Database\Eloquent\Model;
class ItemLookup extends Model
{
// Table Name
protected $table = 'item_lookup';
//Primary Key
public $primaryKey = 'item_id';
// Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'item_id',
'capacity',
'description',
'graphic_id',
'group_id',
'icon_id',
'market_group_id',
'mass',
'name',
'packaged_volume',
'portion_size',
'published',
'radius',
'type_id',
'volume',
];
}