This commit is contained in:
2026-03-15 18:13:33 -05:00
parent 82cc28541c
commit 7b058c7e57
3 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Models\Lookup;
use Illuminate\Database\Eloquent\Model;
class SolarSystem extends Model
{
public $table = 'solar_systems';
public $primaryKey = 'id';
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'name',
'solar_system_id',
];
}