re-arranging moon stuff in the correct controller

This commit is contained in:
2018-10-23 20:48:03 -05:00
parent 83b00bab4f
commit 124f02367b
7 changed files with 19 additions and 32 deletions

View File

@@ -29,17 +29,7 @@ class DashboardController extends Controller
return view('dashboard');
}
public function addMoon() {
return view('dashboard.addmoon');
}
public function profile() {
//
}
public function displayMoons() {
$moons = DB::table('moons')->get();
return 'Moons Display Table';
}
}