Files
w4rpservices/app/Models/Logistics/SolarSystemDistance.php
2019-07-07 02:11:40 -05:00

28 lines
439 B
PHP

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