@extends('layouts.app') @section('content') Shopping Cart {{ isset($cart) ? count($cart->item) : 0 }} items @if (isset($cart) &&count($cart->item) != 0) @foreach ($cart->item as $key => $item) {{ $item->product_name }} Cotton T-shirt Rp.{{ $item->price }} delete @endforeach @else no data @endif Summary items 3 Rp.{{ isset($cart) ? $cart->getTotalAmount() : 0 }} Shipping Standard-Delivery- €5.00 Two Three Four Give code Enter your code Total price Rp.{{ isset($cart) ? $cart->getTotalAmount() : 0 }} @if(isset($cart) && count($cart->item) > 0) Checkout @endif @endsection @push('scripts') @endpush