Socieboy\Forum\Controllers\ProfileController::show PHP Method

show() public method

Display forum profile user.
public show ( integer $id ) : Illuminate\View\View
$id integer
return Illuminate\View\View
    public function show($id)
    {
        $userModel = config('forum.user.model');
        $user = $userModel::find($id);
        return view('Forum::User.profile', compact('user'));
    }
ProfileController