diff --git a/app/Http/Controllers/Moons/MoonsController.php b/app/Http/Controllers/Moons/MoonsController.php index 57c120298..fb9846cf3 100644 --- a/app/Http/Controllers/Moons/MoonsController.php +++ b/app/Http/Controllers/Moons/MoonsController.php @@ -12,7 +12,6 @@ use Carbon\Carbon; //Models use App\Models\Moon\Config; use App\Models\Moon\ItemComposition; -use App\Models\Moon\RentalMoon; use App\Models\Moon\OrePrice; use App\Models\Moon\Price; use App\Models\Moon\AllianceMoon; diff --git a/app/Http/Controllers/Moons/RentalMoonsAdminController.php b/app/Http/Controllers/Moons/RentalMoonsAdminController.php new file mode 100644 index 000000000..985700dbe --- /dev/null +++ b/app/Http/Controllers/Moons/RentalMoonsAdminController.php @@ -0,0 +1,62 @@ +middleware('auth'); + $this->middelware('role:user'); + $this->middleware('permission:mining.director'); + } + + /** + * Function to display rental moons being used for the alliance + */ + public function displayAllianceUsageRentalMoons() { + + } + + + /** + * Display the form for requesting new rental moon for the alliance + */ + public function displayRentalMoonForAllianceForm() { + + } + + + /** + * Function to store when a new rental moon is requested + */ + public function storeRentalMoonForAlliance(Request $request) { + + } + + /** + * Function to display the form for figuring out item composition + */ + public function displayItemCompositionForm() { + + } + + /** + * Function to display the results of the form for figuring out item composition + */ + public function displayItemCompositionResults(Request $request) { + + } +} diff --git a/resources/views/layouts/user/dashboard/content.blade.php b/resources/views/layouts/user/dashboard/content.blade.php index cbcf7d64c..f78f6d621 100644 --- a/resources/views/layouts/user/dashboard/content.blade.php +++ b/resources/views/layouts/user/dashboard/content.blade.php @@ -1,5 +1,7 @@