public function getAll()
 {
     $comments = FriendComment::orderby('created_at', 'desc')->get();
     return view('admin.friends.comments.index', ['comments' => $comments]);
 }