created form for rental costs similar to flex structures

This commit is contained in:
2020-08-10 02:17:21 -05:00
parent 8dd1377090
commit 5fd183f95c
11 changed files with 478 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
<?php
namespace App\Models\Rentals;
use Illuminate\Database\Eloquent\Model;
class RentalSystem extends Model
{
/**
* Table Name
*/
public $table = 'alliance_rental_systems';
/**
* Timestamps
*/
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'contact_id',
'contact_name',
'corporation_id',
'corporation_name',
'system_id',
'system_name',
'rental_cost',
'paid_until',
];
}