some fixes and removed the laravel ad-esque home view

This commit is contained in:
2018-07-09 00:17:07 +02:00
parent 6e2040249b
commit fd296e2d8f
5 changed files with 71 additions and 143 deletions
+3
View File
@@ -17,6 +17,9 @@ Auth::routes();
Route::get('/', function () {
if (!Auth::guest()) {
return redirect('/home');
}
return view('welcome');
});