Files
phptimerboard2/app/Models/Lookups/SolarSystemDistance.php
2019-10-12 22:10:15 -05:00

27 lines
460 B
PHP

<?php
namespace App\Models\Lookups;
use Illuminate\Database\Eloquent\Model;
class SolarSystemDistance extends Model
{
//Table Name
public $table = 'solar_system_distances';
//Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'start_id',
'start_name',
'end_id',
'end_name',
'distance',
];
}