/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($id)
 {
     $friend = Friend::find($id);
     $comments = FriendComment::find($id);
     return view('admin.friends.show', ['friend' => $friend, 'comments' => $comments]);
 }