Level 8
definetly the first one...
Route::get('home', HomeController@home);
inside your controller you should use
Auth::user()->id
or whatever logic you want to properly identify the current user in oder to do some specific procedures before you redirect him/her to the "homepage".
PD:
Of course I am asuming the controller already has the auth middleware assigned to it so you are sure that Auth::user() will always have a valid value.
GoodLuck, mark the answer as correct if helpfull.