updating how moon rentals are handled in programming

This commit is contained in:
2019-05-05 19:59:14 -05:00
parent 7ff21997e5
commit 5cef5d11f0
7 changed files with 147 additions and 76 deletions
-4
View File
@@ -29,9 +29,5 @@ class Moon extends Model
'ThirdQuantity',
'FourthOre',
'FourthQuantity',
'RentalCorp',
'RentalEnd',
'Paid',
'Paid_Until',
];
}
@@ -1,6 +1,6 @@
<?php
namespace App\Models\Moon;
namespace App\Models\MoonRent;
use Illuminate\Database\Eloquent\Model;
@@ -23,7 +23,9 @@ class MoonRent extends Model
'RentalCorp',
'RentalEnd',
'Contact',
'Type',
'Price',
'Paid',
'Paid_Until',
];
}