Beispiel #1
0
 public function getIndex(Cart $cart)
 {
     append_section('cart.items', view('cart.partials.items')->withItems($cart->getItems()));
     return view('cart.page')->withTotals(['Total' => $cart->getTotal()]);
 }