moon controller stuff

This commit is contained in:
2018-10-25 20:24:15 -05:00
parent ed5645f588
commit f1a5db849a
+2 -2
View File
@@ -15,11 +15,11 @@ class MoonsController extends Controller
public function displayMoons() {
$moons = DB::table('moons')->get();
return view('dashboard.moon.moon')->with('moons', $moons);
return view('moons.moon')->with('moons', $moons);
}
public function addMoon() {
return view('dashboard.addmoon');
return view('moons.addmoon');
}
/**