Files
w4rpservices/app/Models/Moon/MoonRent.php

29 lines
452 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',
];
}