/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $wishlist = WishList::get();
     return view('admin.wishlist.index', compact('wishlist'));
 }