Files
phptimerboard2/app/Models/Lookups/SolarSystem.php
2019-09-28 01:14:36 -05:00

26 lines
414 B
PHP

<?php
namespace App\Models\Lookups;
use Illuminate\Database\Eloquent\Model;
class SolarSystem extends Model
{
//Table Name
public $table = 'solar_systems';
//Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'name',
'solar_system_id',
'security_status',
];
}