Ejemplo n.º 1
0
 /**
  * Display a listing of products on the wishlist.
  *
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $wishlist = $this->wishlist;
     $items = $this->wishlist->items();
     $total = $this->wishlist->total();
     return View::make('cart.wishlist', compact('wishlist', 'items', 'total'));
 }