Files
phptimerboard2/app/Models/Lookups/CitadelLookup.php
2019-10-21 00:55:58 -05:00

30 lines
483 B
PHP

<?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',
];
}