Can now retrieve data from database

This commit is contained in:
amazing-username
2017-05-25 19:16:58 -05:00
parent 6fb825de5c
commit 9859f5cadd
9 changed files with 215 additions and 18 deletions
+4
View File
@@ -72,4 +72,8 @@ class HomeController extends Controller
return view('userhome', ['username' => $username]);
}
}
public function home(Request $stuff)
{
return view('userhome', ['username' => $stuff->input('username')]);
}
}