item lookup

This commit is contained in:
2019-12-09 01:55:47 -06:00
parent d700910cfd
commit a3dc388abb
6 changed files with 250 additions and 8 deletions
+40
View File
@@ -0,0 +1,40 @@
<?php
namespace App\Models\Lookups;
use Illuminate\Database\Eloquent\Model;
class Item extends Model
{
/**
* Table Name
*/
public $table = 'item_lookup';
/**
* Timestamps
*/
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'capacity',
'description',
'graphic_id',
'group_id',
'icon_id',
'market_group_id',
'mass',
'name',
'packaged_volume',
'portion_size',
'published',
'radius',
'type_id',
'volume',
];
}