moons controller

This commit is contained in:
2019-05-05 21:21:59 -05:00
parent 80d67df04c
commit b5327e3886
3 changed files with 17 additions and 3 deletions

View File

@@ -2,12 +2,13 @@
namespace App\Http\Controllers;
//Internal Library
use Auth;
use DB;
use Illuminate\Http\Request;
use Carbon\Carbon;
//Models
use App\Models\Moon\Config;
use App\Models\Moon\ItemComposition;
use App\Models\Moon\Moon;
@@ -15,6 +16,7 @@ use App\Models\Moon\OrePrice;
use App\Models\Moon\Price;
use App\Models\MoonRent\MoonRental;
//Library
use App\Library\Moons\MoonCalc;
class MoonsController extends Controller