moons controller

This commit is contained in:
2020-02-24 00:06:42 -06:00
parent 12b6f0120b
commit 203b2085ef
5 changed files with 41 additions and 61 deletions

View File

@@ -46,15 +46,6 @@ class MoonsController extends Controller
->with('moons', $moons);
}
/**
* Function to display alliance moons of a particular system
*/
public function displayMoonsSystem($system) {
$moons = AllianceMoon::where(['System' => $system])->get();
return view('moons.user.allmoons.system')->with('moons', $moons);
}
/**
* Function to display the moons and pass data to the blade template
*/