citadel lookup

This commit is contained in:
2019-10-21 00:55:58 -05:00
parent d9dec56700
commit c18ebcba22
7 changed files with 158 additions and 5 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CitadelLookup extends Model
{
//Table Name
public $table = 'citadel_lookup';
//Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'structure_id',
'name',
'position_x',
'position_y',
'position_z',
'solar_system_id',
'type_id',
];
}