/**
  * Show a user's profile, including their recent discussions, comments,
  * and any information they've chosen to provide along with their account.
  *
  * @param string $username
  */
 public function show($username)
 {
     $user = $this->users->getByUsername($username);
     return view('user.show', compact('user'));
 }