@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 total Rp.{{ isset($cart) ? $cart->getTotalAmount() : 0 }} Pick Your Location your city @foreach ($cities as $city) {{ $city['city_name'] }} @endforeach {{-- @foreach ($cities as $city) {{ $city['city_name'] }} @endforeach --}} Shipping Shipping Cost Rp.0 Total price Rp.{{ isset($cart) ? $cart->getTotalAmount() : 0 }} @if(isset($cart) && count($cart->item) > 0) Checkout {{-- href="{{ route('checkout') }}" --}} @endif @endsection @push('scripts') @endpush