Files
w4rpservices/app/Models/Lookups/MoonLookup.php
2021-05-30 16:19:12 +09:00

38 lines
564 B
PHP

<?php
namespace App\Models\Lookups;
use Illuminate\Database\Eloquent\Model;
class MoonLookup extends Model
{
/**
* Table Name
*/
public $table = 'moon_lookup';
/**
* Primary Key
*/
public $primaryKey = 'id';
/**
* Timestamps
*/
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'moon_id',
'name',
'position_x',
'position_y',
'position_z',
'system_id',
];
}