Files
w4rpservices/app/Models/Moon/MoonRent.php
T
2019-05-05 03:41:51 -05:00

30 lines
474 B
PHP

<?php
namespace App\Models\Moon;
use Illuminate\Database\Eloquent\Model;
class MoonRent extends Model
{
// Table Name
protected $table = 'moon_rents';
//Primary Key
public $primaryKey = 'id';
//Timestamps
public $timestamps = false;
//Fillable Items
protected $fillable = [
'System',
'Planet',
'Moon',
'RentalCorp',
'RentalEnd',
'Contact',
'Price',
'Paid_Until',
];
}