reworked all of the controllers to use . for views and / for redirects

This commit is contained in:
2019-04-27 20:56:01 -05:00
parent 5564b09c3b
commit d45e8f8606
7 changed files with 20 additions and 20 deletions

View File

@@ -85,11 +85,11 @@ class MoonsController extends Controller
]);
}
return view('moons/user/moon')->with('table', $table);
return view('moons.user.moon')->with('table', $table);
}
public function displayTotalWorthForm() {
return view('moons/user/formTotalWorth');
return view('moons.user.formTotalWorth');
}
public function displayTotalWorth(Request $request) {